android_find_element
Locate Android UI elements by text, content description, resource ID, or class name, returning their center tap coordinates for precise interaction.
Instructions
Search for UI elements on the current Android screen by visible text, content description, resource ID, or class name. Returns matching elements with their computed center tap coordinates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | No | Visible text to search for | |
| deviceId | No | Optional device ID | |
| className | No | Widget class name (e.g. "android.widget.Button", "TextView") | |
| clickable | No | Filter by clickable state | |
| exactMatch | No | Whether to require exact string match instead of substring match | |
| resourceId | No | Android resource ID (e.g. "com.android.settings:id/switch_widget") | |
| contentDescription | No | Accessibility content description |