Reputation: 162
in my .circleci/config.yml
I have specified this orb: browser-tools: circleci/[email protected]
. It is failing due to the following error:
Installed version of Google Chrome is 116.0.5845.140
ChromeDriver 116.0.5845.140 will be installed
116.0.5845.140 will be installed
curl: (22) The requested URL returned error: 404
mv: cannot stat 'chromedriver-linux64': No such file or directory
mv: cannot stat 'chromedriver/chromedriver': No such file or directory
chmod: cannot access '/usr/local/bin/chromedriver': No such file or directory
/bin/bash: line 194: chromedriver: command not found
Something went wrong; ChromeDriver could not be installed
It seems like that the URL is changed where chromedriver is hosted. I updated the browsertools to version 1.4.4 but I still run into the same issue. Does anyone know how to fix this or has the same issue? Thanks for your help!
Upvotes: 0
Views: 664
Reputation: 1
That works for me but adding replace-existing:
- browser-tools/install-chrome:
chrome-version: 114.0.5735.90
replace-existing: true
Upvotes: 0
Reputation: 162
This will fix it, change in.circleci/config.yml
:
browser-tools: circleci/[email protected]
...
- browser-tools/install-chrome:
chrome-version: 116.0.5845.96
Upvotes: 0