capture_screenshot
Capture and save Android device screenshots to a specific test folder for streamlined debugging and testing, using step-based naming for organized storage.
Instructions
Capture a screenshot and save it to the test folder
Input Schema
Name | Required | Description | Default |
---|---|---|---|
step_name | Yes | Name of the step for the screenshot file (e.g., "001_login") | |
test_name | Yes | Name of the test folder where to save the screenshot |
Input Schema (JSON Schema)
{
"properties": {
"step_name": {
"description": "Name of the step for the screenshot file (e.g., \"001_login\")",
"type": "string"
},
"test_name": {
"description": "Name of the test folder where to save the screenshot",
"type": "string"
}
},
"required": [
"test_name",
"step_name"
],
"type": "object"
}