Element scroll down does not work

I am trying to scrape a page using the element scroll down feature, as the elements in the page are infinitely scrolling down. However, when using this selector and running the scraper, only a the first couple of elements are being selected.

Url: https://platform.centraalregistertechniek.nl/Vakbedrijven/Zoeken?t=Energie-advies

Sitemap:
{"_id":"energie-advies","startUrl":["https://platform.centraalregistertechniek.nl/Vakbedrijven/Zoeken?t=Energie-advies"],"selectors":[{"delay":500,"id":"Bedrijf","multiple":true,"parentSelectors":["_root"],"selector":"div.card","type":"SelectorElementScroll"},{"delay":0,"id":"Naam","multiple":false,"parentSelectors":["Bedrijf"],"regex":"","selector":".heading4 span","type":"SelectorText"},{"delay":0,"id":"Adres","multiple":false,"parentSelectors":["Bedrijf"],"regex":"","selector":".margin-top-s > span","type":"SelectorText"},{"delay":0,"id":"postcode,plaats","multiple":false,"parentSelectors":["Bedrijf"],"regex":"","selector":"div:nth-of-type(4) span","type":"SelectorText"},{"delay":0,"id":"telefoon","multiple":false,"parentSelectors":["Bedrijf"],"regex":"","selector":"div:nth-of-type(5) span.ThemeGrid_MarginGutter","type":"SelectorText"},{"delay":0,"id":"e-mail","multiple":false,"parentSelectors":["Bedrijf"],"regex":"","selector":"div:nth-of-type(6) span.ThemeGrid_MarginGutter","type":"SelectorText"},{"delay":0,"id":"type","multiple":false,"parentSelectors":["Bedrijf"],"regex":"","selector":".tag span","type":"SelectorText"}]}

@arxgroup Hi. After inspecting the structure of this website it appears that the discovered elements are based on pixels and after scrolling down the page the previously discovered elements are replaced by newly discovered elements. You can test that by scrolling down the page and clicking the 'Element preview' button to view the 'Selected element count'.

The best alternative, in this case, requires zooming out the page as far as you can or copying data straight from the 'Data preview' window.