Protractor issue while running the conf.js file for new chromedriver versions like 76.0.3809.68
I am trying to run the protractor tests on latest chrome version whic
The solution that worked for me was navigating to ./node_modules/protractor
and running npm i webdriver-manager@latest
.
Then go back to the app root and run webdriver-manager update
and this time it should download the v76 driver.
You need to install compatible chromedriver
version which is 76.0.0
. chromedriver versioning convention is now changed to track the chrome version.
I was also facing same issue, here is a workaround which I tried and it helped me:
npm install -g protractor
and webdriver-manager update
which downloaded chromedriver_76.0.3809.12.zip
and geckodriver_v0.24.0
npm install
command under ~\<Project Folder>\Test\npm_modules
selenium
folder from C:\Users\<username>\AppData\Roaming\npm\node_modules\protractor\node_modules\selenium-webdriver\selenium\
to ~\<Project Folder>\Test\npm_modules\Protractor\node_modules\webdriver-manager\selenium\
and this fixed the above mentioned error.