tap
Simulate precise taps on Android devices by specifying exact X and Y coordinates for testing or automation.
Instructions
Simulate a tap on the connected Android device at the specified coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | ||
y | Yes |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"title": "X",
"type": "integer"
},
"y": {
"title": "Y",
"type": "integer"
}
},
"required": [
"x",
"y"
],
"title": "tapArguments",
"type": "object"
}