How to scrape with scroll down

I try to scrape a site with a scroll down as a parent. Then I need to open each profile and copy the text that is only available after a click on the profile. But if I put SelectorLink as a child for Scroll Down it just doesn't return any data. Is it possible to combine simple bundle SelectorLink->SelectorText with a Scroll Down?

Url (clickable)

Sitemap:
{"_id":"masterus","startUrl":["https://masterus.org/all_masters"],"selectors":[{"id":"link","multiple":true,"parentSelectors":["Scroll-down"],"selector":"div.column","type":"SelectorLink"},{"id":"description","multiple":false,"parentSelectors":["link"],"regex":"","selector":".main-page > div > div > div.column > div.Text","type":"SelectorText"},{"delay":2000,"elementLimit":500,"id":"Scroll-down","multiple":true,"parentSelectors":["_root"],"selector":"div.column.clickable-element","type":"SelectorElementScroll"}]}

@owore Hi, unfortunately, the 'Element click' selector will not work here as the page is reloaded each time a new listing is accessed and the listing page HTML does not seem to contain the page URL as well.