NOt able to use any selector on a specific website

On this page: https://www.bugaboo.com/nl-en/faq/strollers-general-fq001.html I am not able to use any kind of selector? I see visual selector moving on the website, but if I click nothing is selected. I also can not cancel the operation anymore and I have to close this tab.

What is it in this webpage that seem to cause this bug? Other websites seem to work just fine and I already use Webscraper a long time!

Any help would be greatly appreciated!

Thanks,
Ramon

P.s. I work on a macbook and I have the latest version of everything :wink:

The click will not work just for this site, as they are actively preventing a click

To scrape the data from this site, you will have to write the selectors out manually by navigating the "Elements" section of the console and finding the appropriate selectors for data points you are after.

Hi!,

Thanks a lot! Very helpful, I didn't know that. All clear now.

Interesting site. Yes, you have to manually search for the selectors. Try this:
{"_id":"bugaboo","startUrl":["https://www.bugaboo.com/nl-en/faq/strollers-general-fq001.html"],"selectors":[{"id":"Expand questions","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div[class='accordion__item']","multiple":true,"delay":"600","clickElementSelector":"div button.accordion__item-header","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Question","type":"SelectorText","parentSelectors":["Expand questions"],"selector":"button > span.accordion__item-header--close","multiple":false,"regex":"","delay":0},{"id":"Answer","type":"SelectorText","parentSelectors":["Expand questions"],"selector":"div.accordion__item-content.s-rich-text","multiple":false,"regex":"","delay":0}]}

Many thanks!! Works like a charm!!