show_run_from_last_24
Display test and suite execution results from the past 24 hours to monitor recent automation runs and track performance trends.
Instructions
Shows tests/suites runs from last 24 hours
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pageSize | No | Number of results per page (default: 50) | |
| runType | No | Type of runs to show - test, suite, or both | both |
Input Schema (JSON Schema)
{
"properties": {
"pageSize": {
"default": 50,
"description": "Number of results per page (default: 50)",
"type": "number"
},
"runType": {
"default": "both",
"description": "Type of runs to show - test, suite, or both",
"enum": [
"test",
"suite",
"both"
],
"type": "string"
}
},
"type": "object"
}