Please advice the strategy to approach this website

Hi friends,
I have trouble trying to scrape the information for this site. There are 2 steps in which I have no idea on how to approach, thus need your help.

  1. I need to click this button in order to change the content of the table
    image

  2. I'm trying to use table_selector to scrape the data for the site but it's clearly not working.

Any suggestions are welcome!

Url: https://www.finnomena.com/stock/tip

Sitemap:
My current sitemap is not working.

Clicking the button is straightforward (can use Type: Element click) but this is not a standard HTML table so Type: Table won't work here.

The table structure is unusual too, so I don't think you can get the data with just WS alone. I would grab the source HTML for the whole table (Type: HTML), then do post-processing on it (that means, needs programming).