Help scraping images from lightbox / carousel please

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}]}

I've made a little bit of progress on this...

Instead of opening the lightbox I've got the scraper to grab the 1st image in the slideshow and then click on the next arrow to get the 2nd image but I can't work out how to repeat that process x times to get more images?

I've used the Element Selector to get the slideshow container and then the SelectorElementClick selector to click the next arrow to get the 2nd image?

Here's my updated sitemap:

{"_id":"cars2couk","startUrl":["https://www.cars2.co.uk/used-cars/"],"selectors":[{"id":"link","multiple":true,"parentSelectors":["_root"],"selector":"a.thumb","type":"SelectorLink"},{"id":"make","multiple":false,"parentSelectors":["link"],"regex":"","selector":"h1 span.make","type":"SelectorText"},{"id":"model","multiple":false,"parentSelectors":["link"],"regex":"","selector":"h1 span.model","type":"SelectorText"},{"id":"price","multiple":false,"parentSelectors":["link"],"regex":"","selector":".price-now span.value","type":"SelectorText"},{"id":"description","multiple":false,"parentSelectors":["link"],"regex":"","selector":".pb-2 .cell span.value","type":"SelectorText"},{"id":"fuel","multiple":false,"parentSelectors":["link"],"regex":"","selector":".has-icons--small span.fuel-type","type":"SelectorText"},{"id":"mileage","multiple":false,"parentSelectors":["link"],"regex":"","selector":".has-icons--small span.mileage","type":"SelectorText"},{"id":"engine","multiple":false,"parentSelectors":["link"],"regex":"","selector":".has-icons--small span.engine-size","type":"SelectorText"},{"id":"gearbox","multiple":false,"parentSelectors":["link"],"regex":"","selector":".has-icons--small span.transmission","type":"SelectorText"},{"id":"phone","multiple":false,"parentSelectors":["link"],"regex":"","selector":"a.hidden-phone span.nd-dynamo-telephony","type":"SelectorText"},{"id":"variant","multiple":false,"parentSelectors":["link"],"regex":"","selector":"h1 span.variant","type":"SelectorText"},{"id":"year","multiple":false,"parentSelectors":["link"],"regex":"","selector":"span.reg-year","type":"SelectorText"},{"id":"address","multiple":false,"parentSelectors":["link"],"regex":"","selector":".location-address section","type":"SelectorText"},{"id":"images","multiple":false,"parentSelectors":["link"],"selector":"div.used-media","type":"SelectorElement"},{"id":"image01","multiple":false,"parentSelectors":["images"],"selector":".cycle-slide-active img","type":"SelectorImage"},{"clickElementSelector":"a.cycle-next","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"next image","multiple":true,"parentSelectors":["images"],"selector":"a.cycle-next","type":"SelectorElementClick"},{"id":"image02","multiple":false,"parentSelectors":["images"],"selector":".cycle-slide-active img","type":"SelectorImage"}]}

@raindrop

Hello, to extract all of the images you can use the 'Grouped' selector: .item.cycle-slide img
an 'Attribute name' - src