I am trying to read a table at an URL using pandas read_html, but the table I am interested in is loaded after the other parts of the page, so the dataframe I get is like below instead of the actual content:
ColumnA | ColumnB
Still loading | Still loading
So is there a way to tell read_html to wait until the table is loaded completely and then read the table?