get_test_case_by_key
Retrieve detailed test case information from Zebrunner Test Case Management using a specific case key to access execution data, suite hierarchy, and debug details.
Instructions
๐ Get detailed test case by key (โ Verified Working)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
case_key | Yes | Test case key (e.g., 'ANDROID-29', 'IOS-2') | |
format | No | Output format | json |
include_clickable_links | No | Include clickable links to Zebrunner web UI | |
include_debug | No | Include debug information in markdown | |
include_suite_hierarchy | No | Include featureSuiteId and rootSuiteId with suite hierarchy path | |
project_key | No | Project key (e.g., 'android' or 'ANDROID') - auto-detected from case_key if not provided |
Input Schema (JSON Schema)
{
"properties": {
"case_key": {
"description": "Test case key (e.g., 'ANDROID-29', 'IOS-2')",
"minLength": 1,
"type": "string"
},
"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"
},
"include_debug": {
"default": false,
"description": "Include debug information in markdown",
"type": "boolean"
},
"include_suite_hierarchy": {
"default": false,
"description": "Include featureSuiteId and rootSuiteId with suite hierarchy path",
"type": "boolean"
},
"project_key": {
"description": "Project key (e.g., 'android' or 'ANDROID') - auto-detected from case_key if not provided",
"minLength": 1,
"type": "string"
}
},
"required": [
"case_key"
],
"type": "object"
}