Data preview available but empty scraping result

I'm trying to scrape the products from an OTA website. My setup yields the results I want but only in data preview. When I try to scrape, the result is empty. See the site below and the sitemap. Kindly asking for help, thanks!

Url: Best things to do in Tokyo 2024 | Attractions & activities

Sitemap:
{"_id":"klook-tokyo","startUrl":["https://www.klook.com/city/28-tokyo-things-to-do/?page=1&frontend_id_list=3%2C157%2C4%2C116%2C117%2C158%2C28%2C8&sort=participants&spm=City.SortByBtn&clickId=f3a5a661d6","https://www.klook.com/city/28-tokyo-things-to-do/?page=2&frontend_id_list=3%2C157%2C4%2C116%2C117%2C158%2C28%2C8&sort=participants&spm=City.SortByBtn&clickId=f3a5a661d6"],"selectors":[{"id":"wrapper","multiple":true,"parentSelectors":["_root"],"selector":".filter-result a","type":"SelectorElement"},{"id":"product-name","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"div.card-title","type":"SelectorText"},{"id":"country","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"[data-spm-module='BreadCrumbs:any::Breadcrumb:BreadCrumb_LIST?idx=1&len=3&ext=%7B%22BreadCrumb%22%3A%22%22%7D'] a","type":"SelectorText"},{"id":"region","multiple":false,"parentSelectors":["_root"],"regex":"","selector":".is-current a","type":"SelectorText"}]}

Hi, the issue occurs due the fact, that the targeted elements are rendered only after a scroll down. You can check this by refreshing the page and then again clicking on Element preview. This can be solved by changing the Wrapper element type to Element scroll down.

{"_id":"klook-tokyo","startUrl":["https://www.klook.com/city/28-tokyo-things-to-do/?page=1&frontend_id_list=3%2C157%2C4%2C116%2C117%2C158%2C28%2C8&sort=participants&spm=City.SortByBtn&clickId=f3a5a661d6","https://www.klook.com/city/28-tokyo-things-to-do/?page=2&frontend_id_list=3%2C157%2C4%2C116%2C117%2C158%2C28%2C8&sort=participants&spm=City.SortByBtn&clickId=f3a5a661d6"],"selectors":[{"id":"product-name","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"div.card-title","type":"SelectorText"},{"id":"country","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"[data-spm-module='BreadCrumbs:any::Breadcrumb:BreadCrumb_LIST?idx=1&len=3&ext=%7B%22BreadCrumb%22%3A%22%22%7D'] a","type":"SelectorText"},{"id":"region","multiple":false,"parentSelectors":["_root"],"regex":"","selector":".is-current a","type":"SelectorText"},{"delay":2000,"elementLimit":500,"id":"wrapper","multiple":true,"parentSelectors":["_root"],"selector":".filter-result a","type":"SelectorElementScroll"}]}

That works for me, thanks!