Get Full Test Results
openl_get_test_resultsRetrieve complete test execution results with pagination support. Get test cases grouped by table, with options to filter failures and control page size.
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) | |
| 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 data, 'markdown' for human-readable (default), 'markdown_concise' for brief summary (1-2 paragraphs), 'markdown_detailed' for full details with context | markdown |