list_test_run_test_cases
Retrieve all test cases from a specific test run in Zebrunner Test Case Management. Use this tool to access test case details and execution data for quality assurance analysis.
Instructions
๐ List all Test Cases in a Test Run from Public API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: raw API response or formatted data | formatted |
project | No | Project alias ('web', 'android', 'ios', 'api') or project key | web |
testRunId | Yes | Test Run ID |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "formatted",
"description": "Output format: raw API response or formatted data",
"enum": [
"raw",
"formatted"
],
"type": "string"
},
"project": {
"anyOf": [
{
"enum": [
"web",
"android",
"ios",
"api"
],
"type": "string"
},
{
"type": "string"
}
],
"default": "web",
"description": "Project alias ('web', 'android', 'ios', 'api') or project key"
},
"testRunId": {
"description": "Test Run ID",
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"testRunId"
],
"type": "object"
}