Infinate scroll - what selector to get everything?

Hi I am struggeling to find the selector for the SelectorElementScroll so it keeps scrolling down and does not end too soon. Any ideas?

{"_id":"viaplay_film","startUrl":["https://viaplay.dk/film/alle"],"selectors":[{"id":"select","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":".Grid-wrapper-30ujW","multiple":false,"delay":"0"}]}

Firstly, to make the Scroll work, you need to select individual item cards for the scraper to discover and not the whole grid.

Secondly, the Scroll selector requires a delay, as, otherwise, if items are not rendering quick enough, the scroll can end before reaching the bottom of the page.

{"_id":"viaplay_film","startUrl":["https://viaplay.dk/film/alle"],"selectors":[{"id":"select","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"div[class*=\"Grid-wrapper\"] [data-testhook=\"item\"]","multiple":true,"delay":"2000"}]}

Thanks a lot for the explation and code. Learning new things every day :slight_smile: