Problems extracting images

I was able to extract the images before but they changed the website.
This is an example of url:

I want to extract all images to put them in woocommerce gallery.
I probably will have to set different selectors to a limit, like 6 to get individual links.

Tried this: .hls-product-gallery__tile--large img
Only get's the big image

When i select the smaller ones, ex: 3rd image, get's the alt name, so it's no good for other products:

Anyone have a solution?

Use Grouped selector to retrieve images URL:

.hls-product-gallery__tile img

Fairly straightforward. If you use the selector that way, it would only get that specific image from that 1 page. Take a look at this example which I created manually; it will grab the first 3 images. You can easily create more image selectors by incrementing the nth-of-type to 4, 5, etc:

{"_id":"miele-test","startUrl":["https://www.miele.pt/product/12537200/maquina-de-lavar-roupa-de-carga-frontal-w1-wwi880-wcs-125-gala-edition-branco-lotus"],"selectors":[{"id":"Title","parentSelectors":["_root"],"type":"SelectorText","selector":"h1","multiple":false,"regex":""},{"id":"Image1","parentSelectors":["_root"],"type":"SelectorImage","selector":".hls-product-gallery__tile--large img","multiple":false},{"id":"Image2","parentSelectors":["_root"],"type":"SelectorElementAttribute","selector":"div > section.hls-product-gallery__wrapper > div:nth-of-type(2) img","multiple":false,"extractAttribute":"src"},{"id":"Image3","parentSelectors":["_root"],"type":"SelectorElementAttribute","selector":"div > section.hls-product-gallery__wrapper > div:nth-of-type(3) img","multiple":false,"extractAttribute":"src"}]}

What if there are 15 or 20 images... Is it the best way to grab them all at once?
Rather than to use Grouped selector and post process it by Excel...

Ya personally I would use Grouped selector and post-process too.