Hi,
i need to scrape this page
there is an infinite scroll on the left frame of the page, then when you click on the "title" (for example AVIA Tankstelle) it will open a popup on the right side of the page where you can see a "details" button. Basically i need to scrape the url of this "details" button like https://www.avia.de/tankstellen/tankstellen-suche/tankstellen-details?facilityID=9722 so i can later scrape all the details.
I created this sitemap
{"_id":"aviade","startUrl":["https://www.avia.de/tankstellen/tankstellen-suche"],"selectors":[{"id":"bodypage","multiple":false,"parentSelectors":["_root"],"selector":"body","type":"SelectorElement"},{"delay":2000,"elementLimit":500,"id":"leftbox","multiple":true,"parentSelectors":["bodypage"],"selector":"div.pr-0","type":"SelectorElementScroll"},{"clickActionType":"real","clickElementSelector":"div.col-8","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"clicktitle","multiple":true,"parentSelectors":["leftbox"],"selector":"div.col-8","type":"SelectorElementClick"}]}
but it is not working at all, the page goes up and down (even if i selected only the left box to be scrolled). Do you have any idea?
thanks a lot!