Get Full Test Results
openl_get_test_resultsRetrieve complete test execution results grouped by table with pagination, filter failures, and view summaries after running tests.
Instructions
Get full test execution results with pagination support. Returns complete test execution summary including testCases array grouped by table. IMPORTANT: Pagination applies to test tables (not individual test cases). Each page returns test results aggregated by table (e.g., 'TestTable1' with 7 tests, 'TestTable2' with 8 tests). Supports filtering failures and pagination (page/offset/size). Use openl_start_project_tests() first to start test execution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (0-based). Mutually exclusive with offset | |
| size | No | Page size (number of results per page, maximum 200) | |
| limit | No | Page size (alias for size, maps to size parameter) | |
| offset | No | Offset for pagination. Mutually exclusive with page | |
| unpaged | No | Return all results without pagination. Mutually exclusive with page, offset, size, and limit | |
| failures | No | Number of failed test units to include in the summary (default: 5, min: 1) | |
| projectId | Yes | Project ID returned by backend. Use the exact 'projectId' value from openl_list_projects() response without modification or reformatting. | |
| failuresOnly | No | Show only failed tests (default: false) | |
| response_format | No | Response format: 'json' for structured, round-trippable data (default), 'markdown' for human-readable output, 'markdown_concise' for a brief summary (1-2 paragraphs), or 'markdown_detailed' for full details with context | json |