pinch / docs /reference /focus.md
AUXteam's picture
Upload folder using huggingface_hub
25b930c verified

Focus

Move focus to an element by ref.

curl -X POST http://localhost:9867/action \
  -H "Content-Type: application/json" \
  -d '{"kind":"focus","ref":"e8"}'
# CLI Alternative
pinchtab focus e8
# Response
{
  "success": true,
  "result": {
    "success": true
  }
}

This is useful before keyboard-only flows such as press Enter or type.

Related Pages