Skip to main content

infinite_scroll

Network

Performs 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

Related Learning Articles

Was this helpful?