run_test_by_name_or_id
Execute automated tests by specifying either the test name or unique ID, with options to use specific execution profiles and override variables for customized test runs.
Instructions
Run test by name or ID - automatically finds test by name if not a UUID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profileName | No | Profile name to use for execution | |
| testNameOrId | Yes | Test name or UUID to execute | |
| variables | No | Override variables for the test run |
Input Schema (JSON Schema)
{
"properties": {
"profileName": {
"description": "Profile name to use for execution",
"type": "string"
},
"testNameOrId": {
"description": "Test name or UUID to execute",
"type": "string"
},
"variables": {
"description": "Override variables for the test run",
"items": {
"additionalProperties": false,
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"testNameOrId"
],
"type": "object"
}