CircleCi Orb 浏览器工具失败

问题描述 投票:0回答:1

在我的

.circleci/config.yml
中我已经指定了这个球体:
browser-tools: circleci/[email protected]
。由于以下错误而失败:

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

托管 chromedriver 的 URL 似乎已更改。我将 browsertools 更新到版本 1.4.4 但仍然遇到同样的问题。 有谁知道如何解决这个问题或有同样的问题? 感谢您的帮助!

selenium-chromedriver circleci circleci-orb
1个回答
0
投票

这将修复它,更改

.circleci/config.yml

browser-tools: circleci/[email protected]
...
- browser-tools/install-chrome:
          chrome-version: 116.0.5845.96
© www.soinside.com 2019 - 2024. All rights reserved.