Pop-up links no data scraped

I have a site that generates a pop-up when you click on every data row. Tried it with the Link Selector and the popups showed during scraping. No data scraped however. The documentation says " If the site creates a visual popup but not a real window then you should try Element click selector" so I tried that. Same phenomenon.

URLs obfuscated for privacy reasons (also in sitemap). Replace [dot] with .

Url: https://boot-holland[dot]nl/deelnemers-en-plattegrond

Sitemap:
{"_id":"boot-holland","startUrl":["https://boot-holland[dot]nl/deelnemers-en-plattegrond"],"selectors":[{"id":"Data Block","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.wtc-modal-window","multiple":true,"delay":"1000","clickElementSelector":".display td.company","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Exposant","type":"SelectorText","parentSelectors":["Data Block"],"selector":"span#modal-label","multiple":false,"regex":"","delay":0},{"id":"Plaats","type":"SelectorText","parentSelectors":["Data Block"],"selector":"span#modal-city","multiple":false,"regex":"","delay":0},{"id":"Website","type":"SelectorLink","parentSelectors":["Data Block"],"selector":"a#modal-website","multiple":false,"delay":0}]}

Try this to get a list of the URLs:

{"_id":"a_a_a","startUrl":["https://boot-holland[dot]nl/deelnemers-en-plattegrond"],"selectors":[{"id":"links","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"table.display tr","multiple":true,"extractAttribute":"data-website","delay":0}]}

Or this to get the name, city, and description along with the URLs:

{"_id":"a_a_a","startUrl":["https://boot-holland[dot]nl/deelnemers-en-plattegrond"],"selectors":[{"id":"links","type":"SelectorElementAttribute","parentSelectors":["list"],"selector":"parent","multiple":false,"extractAttribute":"data-website","delay":0},{"id":"list","type":"SelectorElement","parentSelectors":["_root"],"selector":"table.display tr:has(td.company)","multiple":true,"delay":0},{"id":"name","type":"SelectorElementAttribute","parentSelectors":["list"],"selector":"parent","multiple":false,"extractAttribute":"data-label","delay":0},{"id":"city","type":"SelectorElementAttribute","parentSelectors":["list"],"selector":"parent","multiple":false,"extractAttribute":"data-city","delay":0},{"id":"description","type":"SelectorElementAttribute","parentSelectors":["list"],"selector":"parent","multiple":false,"extractAttribute":"data-description","delay":0}]}

Sorry for the late reply. It still doesn't work, all the columns 'links','name' etc. contain 'null'. What I did is study the source and found out all data is pre loaded so I put that in a text file and via search/replace managed to make a CSV from it. So the problem is solved but I'm still curious how this would work with Webscraper.