如何通过 webdriverio wdio 文件更改 selenium-standalone

我需要更改默认情况下使用的 selenium 独立服务器的端口号 (4444)。端口 4444 当前正在使用,有没有办法通过 wdio 文件更改端口号?


// Test runner services

// Services take over a specific job you don't want to take care of. They enhance

// your test setup with almost no effort. Unlike plugins, they don't add new

// commands. Instead, they hook themselves up into the test process.

services: ['selenium-standalone'],

目前我正在通过以下命令启动 selenium 服务器:


./node_modules/.bin/selenium-standalone start

我也尝试使用以下方法但没有运气:


./node_modules/.bin/selenium-standalone start -port 7777

运行上述命令仍然尝试在端口 4444 上运行 selenium 服务器。


吃鸡游戏
浏览 189回答 2
2回答

狐的传说

要selenium-standalone在特定端口上运行,您应该使用以下语法:./node_modules/.bin/selenium-standalone start -- -port 7777更改 中的端口wdi.conf.js:seleniumArgs: {  seleniumArgs: ["-port", "7777"],},另外,在这里阅读更多关于 wdio 配置文件和关于 wdio-cli 的信息所以,你的最终结果wdio.conf.js应该是这样的:exports.config = {  /**  * server configurations  */  services: ['selenium-standalone'],  port: 7777,  seleniumArgs: {    seleniumArgs: ["-port", "7777"],  },}

catspeake

nodejs webdriver-manager start --seleniumPort 5555
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript