Element attribute as parent selector

Hi! I´m stuck with this . I want to scrape a wallcovering manufacturer website , this website use data-href attribute for the product links instead of the href attribute , so the link option does not work.

With the element attribute option i can reach the data-href values , but with this option i useless because i can´t dive into the different links and collect the data , because the element attribute can´t be used as parent selector.

Any suggestion how i can solve this ??

Regards!!

Currently you won't be able to use data attributes to navigate the site. The only solution would be to scrape the links with data selector and then create another sitemap which uses these links as start url.

May I know what is data selector?

Element attribute selector that scrapes defined attribute from an element, in this case data-href.