Unable to get scraper to continue past 1st name entry

I am attempting to scrape a list of names and attributes. The site contains 10 name entries per page and has several hundred pages.

To gather all attributes tied to each name entry there are 3 pages needing to be accessed (root page, 'more page', and 'show email address' page). A click is required to move from Root page to More page, and another click is required to show the email address hidden under a button.

I'm able to get the all of the data for the 1st name entry, but then the scraper stops working. I have tried all kinds of things, but can't seem to solve this issue. My assumption is that I need to find a way to automate clicking the 'close' button on the 3rd page, so that the scraper can return to the root page and scrape the next name in the list. Thanks in advance for any help!!!

Images from the site

Root page:

After clicking 'More' on the Root page:

After clicking 'Show' on More page:

Images from the browser extension (1. root, 2. more, 3. show)

Root:

More:

Show:

Sitemap:
{"_id":"Scraper_V3","startUrl":["https://xxxxxxxxxxxxxx"],"selectors":[{"id":"Name","multiple":false,"parentSelectors":["_root"],"regex":"","selector":".py-3 h2","type":"SelectorText"},{"id":"Location","multiple":false,"parentSelectors":["_root"],"regex":"","selector":".py-3 p.text-xs","type":"SelectorText"},{"id":"Last Exit","multiple":false,"parentSelectors":["_root"],"regex":"","selector":"li:nth-of-type(1) .py-3 p.text-sm","type":"SelectorText"},{"id":"Interest Areas","multiple":false,"parentSelectors":["_root"],"regex":"","selector":".py-3 span.rounded-full","type":"SelectorText"},{"id":"Linkedin Profile","linkType":"linkFromAttributes","multiple":true,"parentSelectors":["_root"],"selector":"li:nth-of-type(1) .py-3 a[target]","type":"SelectorLink"},{"id":"More","paginationType":"auto","parentSelectors":["_root","More"],"selector":"li:nth-of-type(1) div:nth-of-type(3) a","type":"SelectorPagination"},{"id":"Next","paginationType":"clickMore","parentSelectors":["_root","Next"],"selector":"a.py-2","type":"SelectorPagination"},{"id":"What I'm currently up to","multiple":false,"parentSelectors":["More"],"regex":"","selector":".hidden div:nth-of-type(4) p.text-base","type":"SelectorText"},{"id":"What I hope to find at PEF","multiple":false,"parentSelectors":["More"],"regex":"","selector":".hidden div:nth-of-type(5) p.text-base","type":"SelectorText"},{"id":"Show","paginationType":"auto","parentSelectors":["More","Show"],"selector":".hidden .hidden span.hidden","type":"SelectorPagination"},{"id":"Email","multiple":false,"parentSelectors":["Show"],"regex":"","selector":".max-w-\[340px\] span span","type":"SelectorText"}]}

Hi, I would need to access the HTML of the website to comment on the issue.

Ok, thanks very much for your help.

The best I could figure out is to make the HTML an image.

Please find the pages attached: