How to extract values from individual pop up pages

Each listing in this directory opens up a new pop up. I want to scrape a list from this directory that include the full description from each of the pop up pages.

I'm able to get it to the stage where it clicks on each element and goes to the pop ups, but when I navigate to the pop up page and try to configure the actual scraping of text, an error code says "Parent element not found" and it won't let me do it.

What am I doing wrong?

Url: Little Exits | Search

Sitemap:

{"_id":"LittleExits","startUrl":["https://littleexits.com/"],"selectors":[{"id":"Explore","parentSelectors":["_root"],"type":"SelectorLink","selector":"section:nth-of-type(2) a.css-4m0c6u","multiple":false,"linkType":"linkFromHref"},{"id":"Scroll","parentSelectors":["Explore"],"type":"SelectorElementScroll","selector":".clickable-element > div > div > a","multiple":true,"delay":2000,"elementLimit":3},{"id":"Click","parentSelectors":["Scroll"],"type":"SelectorElementClick","clickActionType":"real","clickElementSelector":"parent","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","multiple":true,"selector":"parent"}]}

Hi,

I changed the click to a link type, and the correct syntax is:

_parent_

Please see reference below:

{"_id":"LittleExits","startUrl":["https://app.littleexits.com/search?q=&min=&max=&npmin=&cat=&sort=Newest&npmax=&csize=&offers=&agelow=0&agehigh=10.1&favorites=no"],"selectors":[{"delay":2000,"elementLimit":3,"id":"Scroll","multiple":true,"parentSelectors":["_root"],"selector":".clickable-element > div > div > a","type":"SelectorElementScroll"},{"id":"Click","linkType":"linkFromHref","multiple":false,"parentSelectors":["Scroll"],"selector":"_parent_","type":"SelectorLink"},{"id":"desc","multiple":false,"parentSelectors":["Click"],"regex":"","selector":"div:nth-of-type(9) div.content","type":"SelectorText"}]}

Hope this helps