I've been writing a program to scrape odds from betting sites using Python and Selenium. When I request the Bot to get the sites, most of the sites get loaded, but not Bet365. The browser keeps loading forever and the screen stay grey. I guess they blocked bots from accessing the site. Any suggestions to fix it? Thanks
from selenium import webdriver
PATH = "/users/jpnas/Documents/botNBA/chromedriver"
driver = webdriver.Chrome(PATH)
driver.get("https://www.bet365.com")