Hi
Use a loop + scroll mechanism:
Set up a counter to determine how many scrolls or pages are needed.
Scroll the container that holds the rows using JavaScript or keyboard input (e.g., Page Down, Arrow Down).
On each scroll:
Wait a short delay (e.g., 500ms)
Use Extract data from web page to extract visible rows
Append data to a list or CSV
Continue until no more rows are loaded or counter ends.
You can use the JavaScript injection method (if allowed by the page) to scroll containers:
javascript
document.querySelector('.table-container').scrollBy(0, 500);
Or simulate scrolling with:
Send keys → [PgDn], [ArrowDown]
UI Automation → Scroll UI element
If I have answered your question, please mark it as the preferred solution. If you like my response, please give it a Thumbs Up.
Regards,
Riyaz