When I open this website https://marketchameleon.com/Reports/PremarketTrading/ using Selenium with Chrome or Firefox the tables do not load, but if I open the website via the normal way with Chrome the content loads.
This is my code to open a browser:
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
#driver = webdriver.Chrome()
driver = webdriver.Firefox()
driver.get('https://marketchameleon.com/Reports/PremarketTrading/')
timeout =3
Can someone point me to the right direction? I am new to Python.