Navigating through Table links

Describe the problem.
Hello, I am trying to scrap from my sport league website and need to capture records by the date of the event. The Root way of seeing all the events is on the schedule page, using a table (link for reference http://svbpl.org/season/39/schedule). I am unable to use a link selector in order to open the next page and continue scrapping.

Is there a way this could be done? You're able to click on one of the two teams in the division to route to the matching page (where I need all the data scrapped), but not sure how to tell the program this is a link, element click doesn't work because I am unable to select anything on the following page as the selector.

Please advise.

Url: http://svbpl.org/season/39/schedule

Sitemap:
{id:"sitemap code"}

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 game Urls from the main page, then in stage 2 you have a different sitemap which uses all those stage 1 Urls as Starturls.

{"_id":"forum-svbpl-stage1","startUrl":["http://svbpl.org/season/39/schedule"],"selectors":[{"id":"Get game links","type":"SelectorElementAttribute","parentSelectors":["_root"],"selector":"td.thick-right:nth-of-type(n+2) li","multiple":true,"extractAttribute":"data-href","delay":0}]}