File size: 471 Bytes
6a7089a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Click
Click an element by ref from a previous snapshot.
```bash
curl -X POST http://localhost:9867/action \
-H "Content-Type: application/json" \
-d '{"kind":"click","ref":"e5"}'
# CLI Alternative
pinchtab click e5
# Response
{
"success": true,
"result": {
"success": true
}
}
```
Notes:
- element refs come from `/snapshot`
- `--wait-nav` exists on the top-level CLI command
## Related Pages
- [Snapshot](./snapshot.md)
- [Navigate](./navigate.md)
|