Scraping data from popup

Hello, I would like to do simple scrap but I got stuck and can't find a solution. I want to scrap data about the fabric (name and grade). The scraper goes through the fabrics but doesn't scrap anything.

Url: Theodore Alexander - Official Website

Sitemap:
{"_id":"theodore-alexander-grades","startUrl":["Theodore Alexander - Official Website tr:contains('Name:') td:nth-of-type(2)","multiple":false,"regex":""},{"id":"grade","parentSelectors":["fabric"],"type":"SelectorText","selector":"div.main_popup_fabric tr:contains('Grade:') td:nth-of-type(2)","multiple":false,"regex":""}]}

Hi, you can try the following sitemap:

{"_id":"theodorealexander2","startUrl":["https://theodorealexander.com/web/our-fabric"],"selectors":[{"id":"name","multiple":false,"parentSelectors":["product-click"],"regex":"","selector":"[class=\"cdk-global-overlay-wrapper\"]:last tr:contains('Name:') td:nth-of-type(2)","type":"SelectorText"},{"id":"grade","multiple":false,"parentSelectors":["product-click"],"regex":"","selector":"[class=\"cdk-global-overlay-wrapper\"]:last tr:contains('Grade:') td:nth-of-type(2)","type":"SelectorText"},{"delay":2000,"elementLimit":0,"id":"pagination","multiple":true,"parentSelectors":["_root"],"selector":".item","type":"SelectorElementScroll"},{"clickActionType":"real","clickElementSelector":"img.img-fab","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"product-click","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"},{"clickActionType":"real","clickElementSelector":"[class=\"icon-close\"]","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"close-popup","multiple":true,"parentSelectors":["product-click"],"selector":"_parent_","type":"SelectorElementClick"}]}

It will perform a scroll to show all items and then click on each item to gather the specified data.

Hope this helps.

Thank you so much for your time! I don't know why, but scrolling makes items visible only when the dev tools are open. But it's not a problem, it works, thanks.

But I have still a problem with the data, it scrapes nothing like something is wrong with the name and grade selector.