Load more button doesn't get all the results

Hi,
Im trying to scrape this website, but i get 142 results instead of 156

Url: https://www.rewe.de/marktsuche/berlin/

Sitemap:
{"_id":"rewe","startUrl":["https://www.rewe.de/marktsuche/berlin/"],"selectors":[{"id":"pagination","paginationType":"clickMore","parentSelectors":["_root","pagination"],"selector":"button.mx-auto","type":"SelectorPagination"},{"delay":1000,"elementLimit":0,"id":"wrapper","multiple":true,"parentSelectors":["pagination"],"selector":"li.market-tile","type":"SelectorElementScroll"},{"id":"link","multiple":true,"parentSelectors":["wrapper"],"selector":"a","type":"SelectorLink"},{"id":"numberoflocations","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"h2","type":"SelectorText"}]}

any idea how i can fix it?
thanks!

@eldoland Hi, it is possible that some of the targeted elements are not fully rendered while scrolling down the page.

After performing tests with the following sitemap, it appears that everything should be extracted properly:

{"_id":"rewe-test-2","startUrl":["https://www.rewe.de/marktsuche/berlin/"],"selectors":[{"delay":500,"elementLimit":0,"id":"init-scroll","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementScroll"},{"id":"pagination","paginationType":"clickMore","parentSelectors":["_root","pagination"],"selector":"button.mx-auto","type":"SelectorPagination"},{"delay":2000,"elementLimit":0,"id":"wrapper","multiple":true,"parentSelectors":["_root"],"selector":"li.market-tile:has(a:contains(\"Alles zum Markt\"))","type":"SelectorElementScroll"},{"extractAttribute":"href","id":"link1","multiple":false,"parentSelectors":["wrapper"],"selector":"a","type":"SelectorElementAttribute"}]}

thanks @ViestursWS it is scraping everything now!
thanks a lot!