openl Get Test Results By Table
openl_get_test_results_by_tableRetrieve test execution results filtered by table ID, with pagination and failure-only options for efficient data retrieval.
Instructions
Get test execution results filtered by specific table ID. Returns filtered test execution summary with only test cases for the specified table. Supports pagination (page/offset/size) for efficient data retrieval. Use openl_start_project_tests() first to start test execution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID returned by backend. Use the exact 'projectId' value from openl_list_projects() response without modification or reformatting. | |
| tableId | Yes | Table ID to filter test results for a specific table | |
| failuresOnly | No | Show only failed tests (default: false) | |
| failures | Yes | Number of failed test units to include in the summary (default: 5, min: 1) | |
| page | No | Page number (0-based). Mutually exclusive with offset | |
| offset | No | Offset for pagination. Mutually exclusive with page | |
| size | No | Page size (number of results per page) | |
| limit | No | Page size (alias for size, maps to size parameter) | |
| unpaged | Yes | Return all results without pagination. Mutually exclusive with page, offset, size, and limit | |
| response_format | No | Response format: 'json' for structured data, 'markdown' for human-readable (default), 'markdown_concise' for brief summary (1-2 paragraphs), 'markdown_detailed' for full details with context | markdown |