mobile_swipe
Execute swipe gestures on Android screens by specifying start and end coordinates with customizable duration for navigation and interaction.
Instructions
Perform a swipe gesture on the Android screen.
Args: start_x: Starting X coordinate start_y: Starting Y coordinate end_x: Ending X coordinate end_y: Ending Y coordinate duration: Duration of swipe in seconds (default: 0.5)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
duration | No | ||
end_x | Yes | ||
end_y | Yes | ||
start_x | Yes | ||
start_y | Yes |
Input Schema (JSON Schema)
{
"properties": {
"duration": {
"default": 0.5,
"type": "number"
},
"end_x": {
"type": "integer"
},
"end_y": {
"type": "integer"
},
"start_x": {
"type": "integer"
},
"start_y": {
"type": "integer"
}
},
"required": [
"start_x",
"start_y",
"end_x",
"end_y"
],
"type": "object"
}