How to setup sitemap for scraping this website please

Hi
Please someone teach me how to scrap the product from this website.
I have tried using the element click
But it did not work.

https://yoshimura.asia/product/pro_cat2.php?cid=1&cid_pr=1&cname=Exhaust

@tortor55 Hi, it appears that the product links are embedded within an attribute, therefore the scrape would have to be conducted in 2 stages.

First - scrape the hidden attribute link references using the following sitemap:

{"_id":"yoshimura-asia","startUrl":["https://yoshimura.asia/product/pro_cat2.php?cid=1&cid_pr=1&cname=Exhaust"],"selectors":[{"extractAttribute":"data-href","id":"links","multiple":true,"parentSelectors":["_root"],"selector":"div:nth-of-type(n+3) li[data-href]","type":"SelectorElementAttribute"}]}

Second - use the scraped references as start URLs for a new sitemap using a method that can be seen in the following video: 2019 - UnTECH # 17 - Scraping Multiple URL's with Webscraper.io - YouTube

Thank you so so much!

I really appreciate.