infinite_scroll
NetworkPerforms repeated scrolling until no new content appears or a limit is reached.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
selector | string | No | | Container to scroll, empty for auto-detect or window |
max_scrolls | number | No | 0 | Max iterations, 0 means infinite until no new content |
scroll_delay | number | No | 1500 | Delay between scrolls in ms |
do | array | No | [] | Commands to run before each scroll |
Usage Example
RTILA X PROJECT JSON
{
"command": "infinite_scroll",
"params": {
"selector": "css=.product-list",
"max_scrolls": 25,
"scroll_delay": 1500,
"do": []
}
}
Related Scenarios
- View /scenarios/pagination/4 · pagination
Related Learning Articles
Was this helpful?
Thank you for your feedback!