input_tap
Simulate touch interactions on Android devices by tapping at precise screen coordinates using X and Y values. Ideal for automation, testing, and UI manipulation via ADB commands.
Instructions
Tap at specific coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | X coordinate for tap | |
y | Yes | Y coordinate for tap |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"description": "X coordinate for tap",
"type": "number"
},
"y": {
"description": "Y coordinate for tap",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}