Tap at device coordinates
devilge_input_tapSends a tap event at exact pixel coordinates on an Android device via ADB. Use for precise UI automation when higher-level text-based tapping is not available.
Instructions
Sends a tap (adb shell input tap) at the given device pixel coordinates. Prefer the higher-level devilge_tap_text (Phase 13) when available — it is more resilient to layout changes than raw coordinates.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | Yes | Horizontal coordinate in device pixels. | |
| y | Yes | Vertical coordinate in device pixels. | |
| serial | No | Device serial. Defaults to DEVILGE_DEFAULT_DEVICE_SERIAL or the only attached device. |