SelectorElementScroll for infinitive scroll

See few items here but neither could help me. I am trying to load all results from a list page using SelectorElementScroll. Then once loaded I want to open detail page for each item to get results.

But scraper is closing after loading all items. Any tips/suggestions?

Url: http://example.com

Sitemap:
{"_id":"fora","startUrl":["https://www.worldpadeltour.com/en/players/"],"selectors":[{"delay":2000,"id":"scrolldown","multiple":true,"parentSelectors":["_root"],"selector":"div.c-player-card__header","type":"SelectorElementScroll"},{"delay":0,"id":"linktocard","multiple":false,"parentSelectors":["_root"],"selector":"div.c-ranking__block:nth-of-type(1) li:nth-of-type(1) div.c-player-card__header","type":"SelectorLink"},{"clickElementSelector":"a[aria-controls='personal_data']","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"selecttab","multiple":false,"parentSelectors":["linktocard"],"selector":"a[aria-controls='personal_data']","type":"SelectorElementClick"},{"delay":0,"id":"dob","multiple":false,"parentSelectors":["linktocard"],"regex":"","selector":".c-player__data-list--is-visible li:nth-of-type(2) p","type":"SelectorText"}]}

@tronkbaseda Hi, it seems that it most likely happens because you have not 'checked' the 'Multiple' option for the 'Link' selector.

Example:

{"_id":"fora","startUrl":["https://www.worldpadeltour.com/en/players/"],"selectors":[{"delay":2000,"id":"scrolldown","multiple":true,"parentSelectors":["_root"],"selector":"li.c-player-card__item:nth-of-type(-n+50)","type":"SelectorElementScroll"},{"delay":0,"id":"linktocard","multiple":false,"parentSelectors":["scrolldown"],"selector":"a","type":"SelectorLink"},{"clickElementSelector":"a[aria-controls='personal_data']","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"selecttab","multiple":false,"parentSelectors":["linktocard"],"selector":"a[aria-controls='personal_data']","type":"SelectorElementClick"},{"delay":0,"id":"dob","multiple":false,"parentSelectors":["linktocard"],"regex":"","selector":".c-player__data-list--is-visible li:nth-of-type(2) p","type":"SelectorText"}]}

Please, note that - :nth-of-type(-n+50) selector limits the scroll 50 players/gender.