Scrap Images from Thumbnails

Hi,
I want to scrap all the images from this link:

I couldn't find a way to scrap the images in the thumbnails (I want the full image not the thumbnail)
Any idea on how to do this?

Appreciate your help

Hi @Fares

For the image extraction you can use the "Grouped" selector - div.viewimg_list li img with an 'Attribute name' - src

After you've extracted all of the images, you can post process the gathered data via Web Scraper Cloud by using the parser feature.

You have to get rid of unnecessary text and symbols by applying regular expression - (?<=images-src":")[^"]+ and you can seperate each of the result in a new line \n. After you have done that - one last thing you have to do is to replace the link part containing - w_160,h_160/format,webp with - w_1500,h_1500/format,webp.

Screenshots:

Final result examples:

Thank you @ViestursWS for your support
I will try to do it and hope it will work with me

Really appreciate it