Can I get some help on selecting this menu please?

I have tried using an element click on the 'Browse products' and then a popup link on the first category and then the same again on the second category.
If I manually navigate then I can sometimes get data but it fails when scraping.
Any idea how I can scrape this menu as a starting point please?

Many thanks

@beau Hi, you should be able to select all of the main category links by using the following selector:

li.main-navigation-level1-item > span > a[href]

Thanks!!

So I start with an element click and then use this as a link selector?!

@beau Yes, here's an example:

{"_id":"test-1","startUrl":["https://www.musgravemarketplace.ie/home?PageSpeed=noscript"],"selectors":[{"clickElementSelector":"span.dropdown__item:nth(0) a","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"click-1","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"id":"category-links","multiple":true,"parentSelectors":["_root"],"selector":"li.main-navigation-level1-item > span > a[href]","type":"SelectorLink"}]}

Perfect

My mistake was putting the selector AFTER the element click rather than having them both at the same level :slight_smile:

Thanks for all your help!