Need help with creating links from this website

Hi all! First of all I would like to say, I'm in love the this program! The UI is very easy, tutorials are great and options are endless.

My problem lies with letting Web Scraper click on links I find. The URL is: https://www.tickettack.nl/en/events

I need Web Scraper to click each individual link, only I can't manage to find the right selector. Does anyone have a clue on how to click each individual event? Once again, the URL is: https://www.tickettack.nl/en/events.

If anyone would be kind enough to help me out, I would truly appreciate it. I have no problem giving a few bucks to the golden advice!

This site uses server-side redirects so WS can't track and follow the links.

It is still possible to scrape this site in two stages, where in stage 1, you get all the event URLs from the main page, then in stage 2 you have a different sitemap which uses all those stage 1 URLs as Starturls. This will get the URLs in stage 1:
2020-07-21_150505

It will produce results like

location.href='welcome-to-the-future-2020';
location.href='dekmantel-festival-2020';

which you need to change to:

https://www.tickettack.nl/en/welcome-to-the-future-2020
https://www.tickettack.nl/en/dekmantel-festival-2020

A straightforward search n replace.