Table selector problem - no content

I admit that I am a newbie. I was using Python based scrapers before but that does not help now because I have to schedule it and I need a cloud service.

So, my problem is about scraping a table. It should be an easy task but I do not get it set up.
I am only able to get the header and not the table content.
There should be an obvious mistake but I am too blind to see it.

Url: https://www.worldometers.info/coronavirus/

I need the detailed table.
Any help is appreciated.

Sitemap:
{"_id":"corona2","startUrl":["https://www.worldometers.info/coronavirus/"],"selectors":[{"id":"corona2","type":"SelectorTable","parentSelectors":["_root"],"selector":"table#main_table_countries_today","multiple":false,"columns":[{"header":"Country,Other","name":"Country,Other","extract":true},{"header":"TotalCases","name":"TotalCases","extract":true},{"header":"NewCases","name":"NewCases","extract":true},{"header":"TotalDeaths","name":"TotalDeaths","extract":true},{"header":"NewDeaths","name":"NewDeaths","extract":true},{"header":"TotalRecovered","name":"TotalRecovered","extract":true},{"header":"ActiveCases","name":"ActiveCases","extract":true},{"header":"Serious,Critical","name":"Serious,Critical","extract":true},{"header":"Tot Cases/1M pop","name":"Tot Cases/1M pop","extract":true}],"delay":0,"tableDataRowSelector":"tbody tr","tableHeaderRowSelector":"thead tr"}]}

The Table selector sometimes does not work properly, so you need to build a table scraper manually. For the example below, I used Page load delay: 5000

{"_id":"forum-worldometers-corona","startUrl":["https://www.worldometers.info/coronavirus/"],"selectors":[{"id":"Table wrapper","type":"SelectorElement","parentSelectors":["_root"],"selector":"table#main_table_countries_today","multiple":false,"delay":0},{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["Table wrapper"],"selector":"tbody > tr","multiple":true,"delay":0},{"id":"Country / Other","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Total Cases","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"New Cases","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"Total Deaths","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"New Deaths","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(5)","multiple":false,"regex":"","delay":0},{"id":"Total Recovered","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(6)","multiple":false,"regex":"","delay":0},{"id":"Active Cases","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(7)","multiple":false,"regex":"","delay":0},{"id":"Serious, Critical","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(8)","multiple":false,"regex":"","delay":0},{"id":"Total Cases/1M pop","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"td:nth-of-type(9)","multiple":false,"regex":"","delay":0}]}