tap-element
Tap on a specific UI element in a mobile app using a selector, such as xpath or id, to enable precise interactions during automated testing with Appium through the MCP Protocol.
Instructions
Tap on a UI element identified by a selector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | Element selector (e.g., xpath, id) | |
strategy | No | Selector strategy: xpath, id, accessibility id, class name (default: xpath) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"description": "Element selector (e.g., xpath, id)",
"type": "string"
},
"strategy": {
"description": "Selector strategy: xpath, id, accessibility id, class name (default: xpath)",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}