mobile_click
Click on specific screen coordinates to interact with Android device interfaces. Perform precise touch actions by providing X and Y coordinates for targeted UI elements.
Instructions
Click on a specific coordinate on the Android screen.
Args: x: X coordinate to click y: Y coordinate to click
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | ||
y | Yes |
Input Schema (JSON Schema)
{
"properties": {
"x": {
"type": "integer"
},
"y": {
"type": "integer"
}
},
"required": [
"x",
"y"
],
"type": "object"
}