Chrome Version 85
Google Chrome is a fast, simple, and secure web browser, built for the modern web. Chrome is designed to be fast in every possible way. It's quick to start up from your desktop, loads web pages in a snap, and runs complex web applications lightning fast. Chrome's browser. They are all basically the same version of Chrome - typically containing the same functionality and features across platforms - however you'll notice in the table above that usually the very last version number.
I use Selenium web driver to scrap some website data that I need for my property analysis. In this case I use chromedriver.
When I want to run it after I upgraded my Chrome browser on Ubuntu I found this error.
My steps to resolve this
1) Check my Chrome browser version and found it is 87.
2) Check my chromedriver version by typing
I found my version is 85 not same as my browser.
3) Check the location of the chrome driver by typing
Chrome Version 85 Offline Installer
Chrome Version 85
In my case I found my chrome driver at /usr/local/sbin
4) Download the latest chromedriver at Google ChromeDriver Website
Google Chrome Download
5) After extracting the latest chromedriver, replace the old one.
Then when I run back my program, it works!
Related Posts
Google Chrome Version 85
- WebDriverIO Version 5 vs Version 4 Differences
I used webdriverIO library in my programming. Recently I upgraded from version 4 to version…
- Selenium User Agent vs Normal Browser User Agent
I noticed lots of websites now implement anti robot from website scraping. Most of them…
- Selenium Webdriver How To Increase Time Out for Page Load, Script Load or Element Locator
I couldn't find at Stackoverflow on how to increase the timeout and the Selenium API…