openl Get Test Results
openl_get_test_resultsRetrieve complete test execution results with pagination, grouped by test table. Filter to show only failed tests and control result volume using page size or offset.
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 |
|---|---|---|---|
| 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) | |
| 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 |