Hi there, (another newbie question!)
I am trying to scrape the image URL's from a website - here is an example of the product page https://www.cars2.co.uk/used-cars/15939507-vauxhall-corsa-1.2i-16-v-85-sxi-3dr-ac/
I can get the main image easy enough but I don't know how to get large versions of the other images as they are not referenced in the HTML? Clicking on the thumbnails opens a lightbox but then I am stuck?
Here is my sitemap so far:
{"_id":"cars2couk","startUrl":["https://www.cars2.co.uk/used-cars/"],"selectors":[{"id":"link","parentSelectors":["_root"],"type":"SelectorLink","selector":"a.thumb","multiple":true},{"id":"make","parentSelectors":["link"],"type":"SelectorText","selector":"h1 span.make","multiple":false,"regex":""},{"id":"model","parentSelectors":["link"],"type":"SelectorText","selector":"h1 span.model","multiple":false,"regex":""},{"id":"price","parentSelectors":["link"],"type":"SelectorText","selector":".price-now span.value","multiple":false,"regex":""},{"id":"description","parentSelectors":["link"],"type":"SelectorText","selector":".pb-2 .cell span.value","multiple":false,"regex":""},{"id":"fuel","parentSelectors":["link"],"type":"SelectorText","selector":".has-icons--small span.fuel-type","multiple":false,"regex":""},{"id":"mileage","parentSelectors":["link"],"type":"SelectorText","selector":".has-icons--small span.mileage","multiple":false,"regex":""},{"id":"engine","parentSelectors":["link"],"type":"SelectorText","selector":".has-icons--small span.engine-size","multiple":false,"regex":""},{"id":"gearbox","parentSelectors":["link"],"type":"SelectorText","selector":".has-icons--small span.transmission","multiple":false,"regex":""},{"id":"phone","parentSelectors":["link"],"type":"SelectorText","selector":"a.hidden-phone span.nd-dynamo-telephony","multiple":false,"regex":""},{"id":"variant","parentSelectors":["link"],"type":"SelectorText","selector":"h1 span.variant","multiple":false,"regex":""},{"id":"year","parentSelectors":["link"],"type":"SelectorText","selector":"span.reg-year","multiple":false,"regex":""},{"id":"address","parentSelectors":["link"],"type":"SelectorText","selector":".location-address section","multiple":false,"regex":""},{"id":"image1","parentSelectors":["link"],"type":"SelectorImage","selector":".cycle-slide-active img.big-image","multiple":false},{"id":"image2","parentSelectors":["link"],"type":"SelectorImage","selector":"div:nth-of-type(23) img","multiple":false},{"id":"image3","parentSelectors":["link"],"type":"SelectorImage","selector":"div:nth-of-type(26) img","multiple":false},{"id":"image4","parentSelectors":["link"],"type":"SelectorImage","selector":"div:nth-of-type(31) img","multiple":false},{"id":"image5","parentSelectors":["link"],"type":"SelectorImage","selector":"div:nth-of-type(46) img","multiple":false}]}