swipe
Execute swipe gestures in specified directions on Android devices connected to espresso-mcp. Define direction and duration to simulate precise touch interactions for testing or automation tasks.
Instructions
Perform a swipe gesture in a specific direction on the connected Android device
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | ||
duration | No |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"title": "Direction",
"type": "string"
},
"duration": {
"default": 500,
"title": "Duration",
"type": "integer"
}
},
"required": [
"direction"
],
"title": "swipeArguments",
"type": "object"
}