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

Scroll

Scroll the current tab by direction or pixel amount.

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

Notes:

  • the top-level CLI also accepts a pixel value such as pinchtab scroll 800
  • the raw API can also use scrollY

Related Pages