vinayak gulati
vinayak gulati

Reputation: 31

Selenium error: This version of ChromeDriver only supports Chrome version 83?

Would appreciate some help on this.

While I try to invoke CHROME browser and set an executable path under Pycharm, I get the below error.

code --- driver = webdriver.Chrome(executable_path= "C:\Users\vinayak.gulati\AppData\Local\Programs\Python\Python37\chromedriver.exe")

Error I get ---- selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 83

Thanks.

Upvotes: 3

Views: 10984

Answers (2)

ASAD HAMEED
ASAD HAMEED

Reputation: 2900

Your Chrome Driver version needs to match your Chrome Browser version

  1. Get you Chrome Browser version, by typing chrome://version

  1. Download Chrome Driver version that matches you Chrome Browser version, form this website https://chromedriver.chromium.org/downloads

Upvotes: 5

AzyCrw4282
AzyCrw4282

Reputation: 7744

You can simply downgrade your chromedriver to work with your current Chrome version.

OR

Update the Google Chrome version to 83 will also do the job.

Steps: 1. Go to Help -> About Google Chrome -> Chrome will automatically look for updates(update Chrome to the latest version)

enter image description here

Update it and if it displays version 83.x.x.x.x.x. then it should solve your problem.

Upvotes: 1

Related Questions