File size: 417 Bytes
25b930c | 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 | # Hover
Move the pointer over an element by ref.
```bash
curl -X POST http://localhost:9867/action \
-H "Content-Type: application/json" \
-d '{"kind":"hover","ref":"e5"}'
# CLI Alternative
pinchtab hover e5
# Response
{
"success": true,
"result": {
"success": true
}
}
```
Use this when menus or tooltips appear only after hover.
## Related Pages
- [Click](./click.md)
- [Snapshot](./snapshot.md)
|