Reputation: 31
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
Reputation: 2900
Your Chrome Driver
version needs to match your Chrome Browser
version
chrome://version
Upvotes: 5
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)
Update it and if it displays version 83.x.x.x.x.x.
then it should solve your problem.
Upvotes: 1