Table selector not working / trouble getting element selector working

I tried using the table selector to scrape data from:

https://www.nasdaq.com/earnings/earnings-calendar.aspx

In a previous thread I started, I was told to use the element selector as the table selector wasn't working properly.

That said, I can't seem to get it working for the above link.

In addition to specific sitemap assistance, is it possible to list out the steps? It would be greatly appreciated as I try to tackle more of these tables myself.

Sitemap:
{"_id":"earnings","startUrl":["https://www.nasdaq.com/earnings/earnings-calendar.aspx"],"selectors":[{"id":"table-element","type":"SelectorElement","parentSelectors":["_root"],"selector":"table#ECCompaniesTable","multiple":true,"delay":0}]}

THANK YOU in advance for helping out. The tool and community have been great so far!!!

Try this. You'll need to manually select the date first, so make sure Page load delay is long enough:

{"_id":"nasdaq-test","startUrl":["https://www.nasdaq.com/market-activity/earnings"],"selectors":[{"id":"Row wrappers","type":"SelectorElement","parentSelectors":["_root"],"selector":"tr.market-calendar-table__row","multiple":true,"delay":0},{"id":"Last Year's EPS","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"[data-column='lastYearEPS'] div","multiple":false,"regex":"","delay":0},{"id":"Symbol","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"[data-column='symbol'] div","multiple":false,"regex":"","delay":0},{"id":"Company Name","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"[data-column='name'] div","multiple":false,"regex":"","delay":0},{"id":"Market Cap","type":"SelectorText","parentSelectors":["Row wrappers"],"selector":"[data-column='marketCap'] div","multiple":false,"regex":"","delay":0}]}