Scollable list (items start to appear when you scroll down).)

Describe the problem:
Hey everyone, I am trying to get some data from skiing resorts. The page which has all the information I want is the following: https://www.skiresort.info/ski-resorts/europe/

My problem is that when I just set a filter (ski resort length equal or more than 50km), I get the results in a scrollable list, that is, as much you scroll down, more ski resorts appear (instead of having 50 results per page and then few pages). When I run the Web Scraper it only gets the data I want from the first 10 ski resorts (at first only appear 10 and when you start scrolling down, more start appearing), and I do not know if I have the chance to fix it in some way (maybe when executing the Web Scraper, doing a first full scroll down in the Pop-Up, or any other thing).

Please help, I will appreciate it much.
Regards,
G.

URL:
https://www.skiresort.info/ski-resorts/europe/

You're referring to a scroller (Type: Element scroll down), but I'm not sure how you got your search results? All I see are regular results which don't need a scroller to scrape. The example below will get the first page for "Ski resort size" filter. For pagination, you can use the Specify multiple urls with ranges method.

{"_id":"forum-skiresort","startUrl":["https://www.skiresort.info/best-ski-resorts/page/3/sorted/ski-resort-size/"],"selectors":[{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"div[id] > div[class*='resort-list-item']","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div.h3","multiple":false,"regex":"","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"div.h3 ~ div[class^='sub']","multiple":false,"regex":"","delay":0},{"id":"Link","type":"SelectorLink","parentSelectors":["Row wrappers"],"selector":"a.h3","multiple":false,"delay":0}]}

.