scroll¶
Scroll the screen in a specified direction.
Usage Example¶
actions:
- scroll:
direction: "down"
amount: 3
description: "Scroll down 3 times"
- scroll:
direction: "up"
amount: 1
description: "Scroll up once"
Parameters¶
Parameter |
Type |
Description |
|---|---|---|
|
string |
Scroll direction: |
|
integer |
Number of scroll increments (required) |
|
string |
Human-readable description (optional) |
Notes¶
Scroll amount is system-dependent (typically 3-5 lines per increment)
Useful for navigating long lists or documents
Consider using
wait_untilafter scrolling to verify content visibility
See Also¶
click for clicking elements
wait_until for waiting on elements after scrolling