Skip to content Skip to sidebar Skip to footer

Webdriver.chrome() Is Not Working

I am trying to use Selenium with Python 3. I installed Selenium and Chrome Webdriver. Pip was pre-installed with Python 3. However, i am getting this error message. I literally sta

Solution 1:

For that you have to download the stable release of Chromedriver, Then it will work

go to this link and download it - https://sites.google.com/a/chromium.org/chromedriver/home

Solution 2:

from selenium import webdriver
    url = 'https://mail.protonmail.com/create/new?language=en'
    driver.get(url)

It should work. It worked for me :)

Post a Comment for "Webdriver.chrome() Is Not Working"