Chrome issue
Depending on what version of the chrome browser are you using, our system may not have the necessary “Web Driver” to run the tests.
You can fix this by searching for the right driver version number and set it on the build.gradle file as value for chromeDriverVersion.
Remember to keep it between single quote marks like: ‘70.0.0.1’
You can do one of these to find the right version number:
1.- Check for it on the Google provided URL.
You can search for it using the URL they provide and appending your google chrome version number at the end, but without the last numbers.
Take the Chrome version number, remove the last part, and append the result to URL:
https://chromedriver.storage.googleapis.com/LATEST_RELEASE_
For example, with Chrome version 72.0.3626.81, you'd get a URL:
https://chromedriver.storage.googleapis.com/LATEST_RELEASE_72.0.3626
(Full documentation, click here)
The page will respond with a version number.
2.- Search on the webdriver downloads section
You can search for the driver version number that supports the chrome browser version you are using. On the download section each chrome driver version states what chrome browser version does it support.
Comments
0 comments
Please sign in to leave a comment.