Unable to get all image URLs? Blocked by website?

Hi there,

I've been working on project - analyzing big brands and their e-commerce websites. Currently I've came across at one of the Zara e-shop and I'm trying to gather all the photos (URLs) from a category. Unfortunately after few hours dealing with this matter I'm not capable of getting it right... I'm able to scrape only one row of image url (out of 7) from my current sitemap.
I would very much appreacite any sort of help. Thank you!

Url: https://www.zara.com/py/en/woman-outerwear-l1184.html?v1=1277364

Sitemap:
{"_id":"zara","startUrl":["https://www.zara.com/py/en/woman-outerwear-l1184.html?v1=1277364"],"selectors":[{"id":"category","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.item","multiple":true,"delay":0},{"id":"sku","type":"SelectorText","parentSelectors":["category"],"selector":"p.product-color","multiple":false,"regex":"","delay":0},{"id":"name","type":"SelectorText","parentSelectors":["category"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"price","type":"SelectorText","parentSelectors":["category"],"selector":"span.main-price","multiple":false,"regex":"","delay":0},{"id":"description","type":"SelectorText","parentSelectors":["category"],"selector":"p.description","multiple":false,"regex":"","delay":0},{"id":"compositionandcare","type":"SelectorPopupLink","parentSelectors":["category"],"selector":"a._product-composition","multiple":false,"delay":0},{"id":"obsah","type":"SelectorText","parentSelectors":["category"],"selector":"div#popup-composition","multiple":false,"regex":"","delay":0},{"id":"img1","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 1 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"img2","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 2 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"img3","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 3 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"img4","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 4 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"img5","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 5 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"img6","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 6 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"img7","type":"SelectorImage","parentSelectors":["category"],"selector":"img[alt='Image 7 of RUSTIC COAT from Zara']","multiple":false,"delay":0},{"id":"imgselector","type":"SelectorImage","parentSelectors":["category"],"selector":"img.image-big","multiple":true,"delay":0}]}

You're on the right track with the separate img scrapers, but you will need better selectors. Try this simplified example which scrapes from 1 page. You can use the same selectors:

{"_id":"forum-zara-b","startUrl":["https://www.zara.com/py/en/rustic-coat-p08073039.html?v1=58501296&v2=1277364"],"selectors":[{"id":"name","type":"SelectorText","parentSelectors":["_root"],"selector":"h1","multiple":false,"regex":"" },{"id":"price","type":"SelectorText","parentSelectors":["_root"],"selector":"span.main-price","multiple":false,"regex":"" },{"id":"img1","type":"SelectorImage","parentSelectors":["_root"],"selector":"div[class^='media-wrap'] img[data-zoom-index='0']","multiple":false },{"id":"img2","type":"SelectorImage","parentSelectors":["_root"],"selector":"div[class^='media-wrap'] img[data-zoom-index='1']","multiple":false },{"id":"img3","type":"SelectorImage","parentSelectors":["_root"],"selector":"div[class^='media-wrap'] img[data-zoom-index='2']","multiple":false },{"id":"img4","type":"SelectorImage","parentSelectors":["_root"],"selector":"div[class^='media-wrap'] img[data-zoom-index='3']","multiple":false }]}

Thank you leemeng! It's working!
I do have one extra question regarding this web... Is it possible to set up a scraper throughout the whole web since it has menu with categories on hover? What selectors should I choose for such thing? Really do appreciate your help!