我正在使用 webdriverIO 进行一些自动化测试,并且最近从“selenium-standalone”服务迁移到默认的 wdio devtools 协议。
- wdio v.7.16.12
- 火狐 v.95.0.2
从那时起,我无法开始使用 firefox 浏览器进行测试:
INFO @wdio/cli:launcher: Run onPrepare hook
INFO @wdio/cli:launcher: Run onWorkerStart hook
INFO @wdio/local-runner: Start worker 0-0 with arg: run,wdio.conf.js
INFO @wdio/local-runner: Run worker command: run
...
INFO devtools:puppeteer: Initiate new session using the DevTools protocol
ERROR @wdio/runner: Error: Couldn't find executable for browser
...
INFO @wdio/cli:launcher: Run onComplete hook
我尝试了使用“wdio:devtoolsOptions”和“moz:firefoxOptions”的不同选项组合。
另外检查是否可以帮助dumpio: true和'moz:debuggerAddress': true选项。
我还尝试用product替换browserName并将binary和executablePath添加到功能中。
将 binary: 'path.to.firefox'传递给 'moz:firefoxOptions' 选项时,错误消息更改为:
ERROR @wdio/runner: Error: Only Nightly release channel is supported in Devtools/Puppeteer for Firefox. Refer to the following issue:
...
有什么想法可以在 webdriverIO 中修复(无需单独安装 puppeteer 或 puppeteer-firefox)?
谢谢!