Not able to scrape data from popup

Describe the problem.
I am trying to scrape data from the website www.ngoparpan.com. The Page opens up popup using Javascipt.void() function. The scraper is not able to extract any data from the popup used.

Url: https://ngodarpan.gov.in/index.php/home/statewise_ngo/81/35/1

Sitemap:
{"_id":"ngodarpan","startUrl":["https://ngodarpan.gov.in/index.php/home/statewise"],"selectors":[{"id":"State","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.bluelink11px","multiple":true,"delay":0},{"id":"NGO Name","type":"SelectorPopupLink","parentSelectors":["State"],"selector":"td a","multiple":true,"delay":0},{"id":"Unique ID","type":"SelectorText","parentSelectors":["NGO Name"],"selector":"span#UniqueID","multiple":false,"regex":"","delay":0}]}

Fortunately all the table data is also repeated in the popups, so you only need to scrape info from the popups. You can trigger them with Type: Element click. You can try the sitemap below. For test scrape, I used Page load delay (ms) 5000, while the delay for the popups is 4500. Pls modify as needed:

{"_id":"ngodarpan","startUrl":["https://ngodarpan.gov.in/index.php/home/statewise_ngo/81/35/1"],"selectors":[{"id":"Trigger popups","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"body","multiple":true,"delay":"4500","clickElementSelector":"td a","clickType":"clickOnce","discardInitialElements":"discard-when-click-element-exists","clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["Trigger popups"],"selector":"span#ngo_name_title","multiple":false,"regex":"","delay":0},{"id":"state","type":"SelectorText","parentSelectors":["Trigger popups"],"selector":"td#ngo_state_p","multiple":false,"regex":"","delay":0},{"id":"Unique ID","type":"SelectorText","parentSelectors":["Trigger popups"],"selector":"tr:contains('Unique Id') td:nth-of-type(2)","multiple":false,"regex":"","delay":0}]}

Thanks for the reply.
It worked.