Hello Guys, How are you all? Hope You all Are Fine. I am trying to use Selenium with python but I am facing the following error Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 in Python. So Here I am Explaining to you all the possible solutions here. Let’s start with This Article to Solve This Error.
- How Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error Occurs?
- How To Solve Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error?
- Solution 1: Use same ChromeDriver and Chrome Browser Version
- Solution 2: Use chromedriver-autoinstaller
- Solution 3: Use chromedriver-binary-auto
- Conclusion
How Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error Occurs?
I am trying to use Selenium with python but I am facing the following error.
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 102
Current browser version is 100.0.4896.127
So here I am writing all the possible solutions that I have tried to resolve this error.
How To Solve Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error?
- How To Solve Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error?
To Solve Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error Just Use chromedriver-autoinstaller in your python project same like this: import chromedriver_autoinstaller as chromedriver chromedriver.install() And Now, Your error must be solved. Thanks.
- Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100
To Solve Message: session not created: This version of ChromeDriver only supports Chrome version 102 Current browser version is 100 Error You need to Use the same ChromeDriver and Chrome Browser Version This Error Only Occurs Cause Of Dirrenece between Your Chrome and Your WebDriver Version Mismatch. Please Make Sure Your ChromeDriver is up to date with ChromeDriver v102 in this version. And Also Your Chrome Browser Is updated to the current chrome=102. Just Follow below two-step to resolve this error. Download Crome web driver version 102 from here https://chromedriver.chromium.org/downloads And Update Your Chrome To the very latest version and then your error must be solved.
Solution 1: Use same ChromeDriver and Chrome Browser Version
You need to Use the same ChromeDriver and Chrome Browser Version This Error Only Occurs Cause Of Dirrenece between Your Chrome and Your WebDriver Version Mismatch.
Please Make Sure Your ChromeDriver is up to date with ChromeDriver v102 in this version. And Also Your Chrome Browser Is updated to the current chrome=102.
Just Follow below two-step to resolve this error.
- Download Chrome Web Driver version 102 from here https://chromedriver.chromium.org/downloads
- And Update Your Chrome To the very latest version and then your error must be solved.
Solution 2: Use chromedriver-autoinstaller
Just Use chromedriver-autoinstaller in your python project same like this.
import chromedriver_autoinstaller as chromedriver
chromedriver.install()
And Now, Your error must be solved. Thanks.
Solution 3: Use chromedriver-binary-auto
You can Also Use chromedriver-binary-auto
pip install --upgrade --force-reinstall chromedriver-binary-auto
import chromedriver_binary
And Now, Your error must be solved. Thanks.
Conclusion
It’s all About this error. I hope We solved Your error. Comment below Your thoughts and your queries. Also, Comment below which solution worked for you?
Also, Read
- 1 Failed! Error: SET PASSWORD has no significance for user ‘root’@’localhost’ as the authentication method used doesn’t store authentication data in the MySQL server
- autoprefixer: Replace color-adjust to print-color-adjust. The color-adjust shorthand is currently deprecated
- 1 WARNING in child compilations (Use ‘stats.children: true’ resp. ‘–stats-children’ for more details)
- How To Count unique values in a column in pandas dataframe?
- How To upgrade the Python installation in Windows 10?