mobile_click_on_screen_at_coordinates
Trigger a click at specified x,y coordinates on a mobile screen. Use with the list_elements_on_screen tool to locate elements accurately for precise automation in mobile apps.
Instructions
Click on the screen at given x,y coordinates. If clicking on an element, use the list_elements_on_screen tool to find the coordinates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
x | Yes | The x coordinate to click on the screen, in pixels | |
y | Yes | The y coordinate to click on the screen, in pixels |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"x": {
"description": "The x coordinate to click on the screen, in pixels",
"type": "number"
},
"y": {
"description": "The y coordinate to click on the screen, in pixels",
"type": "number"
}
},
"required": [
"x",
"y"
],
"type": "object"
}