Scraping Pop-up window

I'm trying to scrape product data from the product detail pages but it open the pop-up in a new tab, and it won't let create any selectors in the new tab.

Url: https://www.wayfair.com/keyword.php?class_id=&keyword=garbage+disposal

Sitemap:
{"_id":"wayfair","startUrl":["https://www.wayfair.com/keyword.php?class_id=&keyword=garbage+disposal"],"selectors":[{"id":"Product Wrapper","type":"SelectorElement","parentSelectors":["_root","Pagnation"],"selector":"div.BrowseCard","multiple":true,"delay":0},{"id":"Pagnation","type":"SelectorLink","parentSelectors":["_root","Pagnation"],"selector":"a.pl-Pagination-icon","multiple":true,"delay":0},{"id":"Products","type":"SelectorPopupLink","parentSelectors":["Product Wrapper"],"selector":"h2","multiple":false,"delay":0},{"id":"Brand","type":"SelectorText","parentSelectors":["Product Wrapper"],"selector":"p.ProductCard-manufacturer","multiple":false,"regex":"","delay":0},{"id":"Front Image","type":"SelectorImage","parentSelectors":["Product Wrapper"],"selector":"img","multiple":false,"delay":0}]}

Very tricky to get data that way from popup. Much easier and more reliable to click thru to the product pages instead 'cos they are regular HTML links (a href). The same data is available on product pages. Try this with Page load delay: 5250

{"_id":"forum-wayfair","startUrl":["https://www.wayfair.com/keyword.php?class_id=&keyword=garbage+disposal"],"selectors":[{"id":"Click all products","type":"SelectorLink","parentSelectors":["_root","Pagination"],"selector":"div#bd div[class^='pl-Box'] div.BrowseProductCard-wrapper a","multiple":true},{"id":"Pagination","type":"SelectorLink","parentSelectors":["_root","Pagination"],"selector":"nav a.pl-Pagination-icon[aria-label='Next']","multiple":false},{"id":"Products","type":"SelectorText","parentSelectors":["Click all products"],"selector":".ProductDetailInfoBlock-header h1","multiple":false,"regex":""},{"id":"Brand","type":"SelectorText","parentSelectors":["Click all products"],"selector":".ProductDetailInfoBlock-header-manu a","multiple":false,"regex":""},{"id":"Front Image","type":"SelectorElementAttribute","parentSelectors":["Click all products"],"selector":"ul div[class*='ImageComponent--overlay'] img[alt]","multiple":false,"extractAttribute":"src"}]}