take_android_screenshot
Capture screenshots from Android devices and emulators for UI analysis and testing purposes. Supports PNG format output and works with connected Android devices.
Instructions
Capture a screenshot from an Android device or emulator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deviceId | No | The ID of the Android device to capture a screenshot from. If not provided, uses the first available device. | |
format | No | The image format for the screenshot. Currently only PNG is supported. | png |
Input Schema (JSON Schema)
{
"properties": {
"deviceId": {
"description": "The ID of the Android device to capture a screenshot from. If not provided, uses the first available device.",
"type": "string"
},
"format": {
"default": "png",
"description": "The image format for the screenshot. Currently only PNG is supported.",
"enum": [
"png"
],
"type": "string"
}
},
"required": [],
"type": "object"
}