Scraping structured data from my own website

So I have my own website at https://www.beaucadeaux.fr/magasin that sells all of my laser engraved items. Each product has all of the data in the HTML as structured data (schema.org) however I need to extract each product into a CSV file in order to upload it into other eCommerce platforms.

I am struggling how to configure the web scraper to only extract the structured data held in the JSON.

Can anyone give me any pointers to start please?

Thanks

@beau Hi.

What are the data points you are looking to extract?

I made some tests in Web Scraper cloud and this is what I got till now:

For the categories - the "Link" selector - .cate-menu .nav > li > a (with the "Multiple" option checked) would be the best option, afterward make an additional "Link" selector for the products h4 a (set as a "child" to the previous selector and also with the "Multiple" option checked). After you have reached the product page you could add an additional "Text" selector, for example - h1 to extract the product name or product description - div#tab-description p and so forth.

Also, be sure to have a look at these resources:

https://webscraper.io/documentation
https://webscraper.io/tutorials
https://webscraper.io/how-to-videos

Hope it helps.

That's awesome! Thanks so much for your help and I can play with that.