Out of memory Error in Python+Selenium first load
问题 I'm trying, and failing, to open the website https://www.bet365.com with selenium and python. In my code, I've followed these steps. First, I just did from selenium import webdriver browser=webdriver.Chrome() browser.get('https://www.bet365.com') After a while, Bet365 changed something and doing the above returned a gray screen. In order to bypass that, I did the following from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument("window-size=1920,1080") options