We recommend upgrading selenium for your account/virtualenv to this version. For example, if you're using Python 3.7, run this in a Bash console: pip3.7 install --user selenium==4.1.3 You can run Selenium with Chrome using code like this: from selenium import webdriver chrome_options = webdriver.ChromeOptions() chrome_options.add_argument("--no-sandbox") chrome_options.add_argument("--headless") c