Click Selector Failed to this Website

Hi,

May I know if I can achieve using your tool to capture the category links from dynamic dropdown when hovering on “Women” and “Men”. Website URL: https://www.bottegaveneta.com/au, mega menu dropdown is generated using AJAX.

Here is my exported sitemap: {"_id":"bottegaveneta","startUrl":["https://www.bottegaveneta.com/au"],"selectors":[{"id":"click-department","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".menu .level-0 > ul","multiple":true,"delay":"200","clickElementSelector":".leaf > button","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"category-link","type":"SelectorLink","parentSelectors":["_root"],"selector":"nav.menu li.hasChildren.menuItem>a+div a","multiple":true,"delay":0}]}

This site uses hover events, which WS does not support yet. There's a kludge you can use where you manually trigger the dropdown, and scrape the URLs for categories. Then you use those URLs for a new sitemap which works for categories (can use multiple Start URLS).

This sitemap will get you the category URLs:

{"_id":"forum-bottegaveneta-categories","startUrl":["https://www.bottegaveneta.com/au"],"selectors":[{"id":"Get categories","type":"SelectorLink","parentSelectors":["_root"],"selector":"li[class^='hasChildren'][class$='menuItem'] > a[aria-expanded]","multiple":true,"delay":0}]}

You will need to set a longer Page load delay, say 9000 (9 sec). When the scraper window opens, hover your mouse to trigger the dropdown. You'll need to do this before the window closes..