No image scraped from popup

I want to scrape alle images from a popup window that's shown on the below url. The popup is opening when you click on the image or the text 'All photos (5)'.
The problem is I don't get any data, when I scrape the url. How can I fix this?

Url: https://www.sigmaaldrich.com/DK/en/product/sial/d6750

Sitemap:
{"_id":"sigmaaldrich_url2","startUrl":["https://www.sigmaaldrich.com/DK/en/product/sial/d6750"],"selectors":[{"id":"image_link","multiple":false,"parentSelectors":["_root"],"selector":"img#active-image","type":"SelectorPopupLink"},{"id":"popup","multiple":false,"parentSelectors":["image_link"],"selector":"#pdp-images-modal","type":"SelectorElement"},{"id":"image","multiple":true,"parentSelectors":["popup"],"selector":"img","type":"SelectorImage"}]}

Best regards

@morsoe Hi, you should be able to scrape the desired data by using an ''Element click'' in a combination with ''Grouped'' selector.

Example:

{"_id":"sigmaaldrich_url2","startUrl":["https://www.sigmaaldrich.com/DK/en/product/sial/d6750"],"selectors":[{"clickElementSelector":"span:contains(\"All Photos\")","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"click-1","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"extractAttribute":"src","id":"images-grouped","parentSelectors":["_root"],"selector":"div[data-testid=\"pdp-images-modal\"] li.slide-visible img","type":"SelectorGroup"}]}

Thank you. It works and I learned something new :slight_smile: