android_touch
Simulate touch interactions on Android device screens by specifying exact coordinates and duration for automated testing or remote control.
Instructions
Simulate a touch event at specific screen coordinates
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | X coordinate | |
| y | Yes | Y coordinate | |
| duration | No | Touch duration in milliseconds (default: 100) | |
| deviceSerial | No | Specific device serial number to target (optional) |
Input Schema (JSON Schema)
{
"properties": {
"deviceSerial": {
"description": "Specific device serial number to target (optional)",
"type": "string"
},
"duration": {
"default": 100,
"description": "Touch duration in milliseconds (default: 100)",
"type": "number"
},
"x": {
"description": "X coordinate",
"type": "number"
},
"y": {
"description": "Y coordinate",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}