get_all_tcm_test_cases_by_project
Retrieve all test cases from a specific Zebrunner project with configurable output formats and pagination for comprehensive test management.
Instructions
๐ Get ALL TCM test cases by project using comprehensive pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format | json |
include_clickable_links | No | Include clickable links to Zebrunner web UI | |
max_results | No | Maximum number of results (configurable limit for performance) | |
project_key | Yes | Project key (e.g., 'android' or 'ANDROID') |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "json",
"description": "Output format",
"enum": [
"dto",
"json",
"string",
"markdown"
],
"type": "string"
},
"include_clickable_links": {
"default": false,
"description": "Include clickable links to Zebrunner web UI",
"type": "boolean"
},
"max_results": {
"default": 500,
"description": "Maximum number of results (configurable limit for performance)",
"exclusiveMinimum": 0,
"maximum": 1000,
"type": "integer"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID')",
"minLength": 1,
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}