I am trying to scrape data from the product page on amazon, the tools is working fine for everything so far, but except the images links.
The problem is, that I am selecting the images in the slider and the scraper only scrapes the first image, not the next +3 images.
Here is a screenshot of how I am doing that.
This is the URL for the category: Amazon.com : summer fashion
I have set it up successfully to go to every product in that category and to scrape the (name, price, category, description and only the first image) but I need to scrape the next +3 images on the product page.
Does anyone with the knowledge can help me with this problem?
UPDATE: Here is how the results are coming to me after scraping
Sitemap:
{"_id":"products","startUrl":["Amazon.com : summer fashion > span .a-size-mini a","type":"SelectorLink"},{"id":"product-name","multiple":false,"parentSelectors":["products-links"],"regex":"","selector":"span.a-size-large","type":"SelectorText"},{"id":"product-price","multiple":false,"parentSelectors":["products-links"],"regex":"","selector":"span.a-text-price:nth-of-type(1) span[aria-hidden]","type":"SelectorText"},{"id":"product-description","multiple":false,"parentSelectors":["products-links"],"regex":"","selector":".a-expander-collapsed-height.a-spacing-medium div.a-expander-content","type":"SelectorText"},{"id":"product-category","multiple":false,"parentSelectors":["products-links"],"regex":"","selector":"li:nth-of-type(5) a.a-color-tertiary","type":"SelectorText"},{"id":"product-image","multiple":false,"parentSelectors":["products-links"],"selector":"img.a-stretch-vertical","type":"SelectorImage"},{"id":"product-image2","multiple":false,"parentSelectors":["products-links"],"selector":".itemNo1 img","type":"SelectorImage"},{"id":"product-image3","multiple":false,"parentSelectors":["products-links"],"selector":".itemNo2 img","type":"SelectorImage"},{"id":"product-image4","multiple":false,"parentSelectors":["products-links"],"selector":".itemNo3 img","type":"SelectorImage"}]}


