Scrape images in a carousel

I'm attempting to scrape image URLs from a carousel.

I've created a sitemap that rotates through each image in the carousel, but when it completes the data doesn't include the image URLs. If I do a data preview an single image it shows the URL, but not when I do a data preview for the carousel.

URL: https://www.holidaycottages.co.uk/cottage/50585-manx-shearwater

Sitemap:
{"_id":"hc-test","startUrl":["https://www.holidaycottages.co.uk/cottage/50585-manx-shearwater"],"selectors":[{"id":"Title","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"Breadcrumb","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"span.cottageadd","type":"SelectorText"},{"id":"Get carousel images","multiple":false,"parentSelectors":["_root","Click thru carousel"],"selector":".item.slick-current img","type":"SelectorImage"},{"clickElementSelector":".property-imagery-container-lightgallery button.slick-next","clickElementUniquenessType":"uniqueHTML","clickType":"clickMore","delay":1500,"discardInitialElements":"do-not-discard","id":"Click thru carousel","multiple":true,"parentSelectors":["_root"],"selector":".item.slick-current img","type":"SelectorElementClick"}]}

Thank you for any help you can offer. :pray:

Here you go, this will work

{"_id":"hc-test","startUrl":["https://www.holidaycottages.co.uk/cottage/50585-manx-shearwater"],"selectors":[{"id":"Title","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"Breadcrumb","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"span.cottageadd","type":"SelectorText"},{"clickActionType":"real","clickElementSelector":".property-imagery-container-lightgallery button.slick-next","clickElementUniquenessType":"uniqueHTML","clickType":"clickMore","delay":4000,"discardInitialElements":"do-not-discard","id":"Image scroll","multiple":true,"parentSelectors":["_root"],"selector":".slick-current img.lazy","type":"SelectorElementClick"},{"extractAttribute":"src","id":"Image Link","multiple":false,"parentSelectors":["Image scroll"],"selector":"parent","type":"SelectorElementAttribute"}]}

you don't need any clicks, because all necessary pictures are already loaded in the sourse code.... ))) easy

{"_id":"hc-test","startUrl":["https://www.holidaycottages.co.uk/cottage/50585-manx-shearwater"],"selectors":[{"id":"Title","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"h1","type":"SelectorText"},{"id":"Breadcrumb","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"span.cottageadd","type":"SelectorText"},{"extractAttribute":"data-src","id":"img","parentSelectors":["_root"],"selector":".slick-list .slick-slide[data-slick-index]:has(img.lazy)","type":"SelectorGroup"}]}