Get Test Results By Table
openl_get_test_results_by_tableRetrieve test execution results filtered by a specific table ID, returning a summary of test cases for that table with pagination support.
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 |
|---|---|---|---|
| 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 | |
| tableId | Yes | Table ID to filter test results for a specific table | |
| 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 |