Data preview is working, but not scraping. Information is in a focus pop-up

Describe the problem.
There is a list of items on the page, and when you click the link, a pop-up shows up in the middle of the page. That pop-up is what I want to scrape data off of. I have put it in a wrapper, and attempting to grab the data off of it. The data preview works, and it works for multiple items - but the scraper is not extracting any data. I let it run all night, and still nothing. I have attempted this with, and without the wrapper. Would love any help that can be provided, and thank you for reading/helping :slight_smile:

Url: https://www.lego.com/en-us/pick-and-build/pick-a-brick?page=29&perPage=400&includeOutOfStock=true

Sitemap:
{"_id":"legopickabrick","startUrl":["https://www.lego.com/en-us/pick-and-build/pick-a-brick?page=1&perPage=400&includeOutOfStock=true"],"selectors":[{"id":"Pagination","paginationType":"auto","parentSelectors":["_root","Pagination"],"selector":"svg.fqhpzz.cEWHhy","type":"SelectorPagination"},{"id":"link","multiple":true,"parentSelectors":["_root","Pagination"],"selector":"span.ElementLeaf_elementTitle__xda82","type":"SelectorPopupLink"},{"id":"image","multiple":false,"parentSelectors":["wrapper"],"selector":"img.ElementImage_inModal__mNUJa","type":"SelectorImage"},{"id":"description","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span.ElementModal_elementTitle__EGJHV","type":"SelectorText"},{"id":"color family","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span:nth-of-type(2) span.Markup__StyledMarkup-nc8x20-0","type":"SelectorText"},{"id":"color","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span:nth-of-type(3) span.Markup__StyledMarkup-nc8x20-0","type":"SelectorText"},{"id":"Category","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span:nth-of-type(4) span.Markup__StyledMarkup-nc8x20-0","type":"SelectorText"},{"id":"sub category","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span:nth-of-type(5) span.Markup__StyledMarkup-nc8x20-0","type":"SelectorText"},{"id":"element ID","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span:nth-of-type(6) span.Markup__StyledMarkup-nc8x20-0","type":"SelectorText"},{"id":"design id","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":"span:nth-of-type(7) span.Markup__StyledMarkup-nc8x20-0","type":"SelectorText"},{"id":"price","multiple":false,"parentSelectors":["wrapper"],"regex":"","selector":".httBwi span","type":"SelectorText"},{"id":"wrapper","multiple":true,"parentSelectors":["link"],"selector":"div.ElementModal_wrapper__fHMs2","type":"SelectorElement"}]}

@baconslayer Hi, is this the output you are looking to get?

Yes it is. How did you do it?

@baconslayer Understood - in order to achieve this you will have to replace the 'Pop-up Link' selector with an 'Element click' selector instead.

Thank you very much. Do you know any resources on this? seems like everything I can find is on pagination without dealing with a pop-up.
I am having issues understanding which settings to pick.

@baconslayer Hi, this should help you understand the idea:

{"_id":"legopickabrick-tests","startUrl":["https://www.lego.com/en-us/pick-and-build/pick-a-brick?page=1&perPage=400&includeOutOfStock=true"],"selectors":[{"id":"link","parentSelectors":["_root"],"type":"SelectorElementClick","clickElementSelector":"li:nth-of-type(1) span[class*=\"ElementLeaf_elementTitle\"]","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":900,"discardInitialElements":"do-not-discard","multiple":true,"selector":"body"},{"id":"image","parentSelectors":["wrapper"],"type":"SelectorImage","selector":"img[class*=\"ElementImage_inModal\"]","multiple":false},{"id":"description","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span[class*=\"ElementModal_elementTitle\"]","multiple":false,"regex":""},{"id":"price","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span:contains(\"$\")","multiple":false,"regex":""},{"id":"wrapper","parentSelectors":["link"],"type":"SelectorElement","selector":"div[class*=\"ElementModal_wrapper\"]","multiple":true},{"id":"category","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span:contains(\"Category\") ","multiple":false,"regex":""},{"id":"sub-category","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span:contains(\"Sub-category\") ","multiple":false,"regex":""},{"id":"element-ID","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span:contains(\"Element ID\") ","multiple":false,"regex":""},{"id":"design-ID","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span:contains(\"Design ID\") ","multiple":false,"regex":""},{"id":"shipping-time","parentSelectors":["wrapper"],"type":"SelectorText","selector":"span:contains(\"Shipping time\") ","multiple":false,"regex":""}]}