gpt4 book ai didi

javascript - 如何通过 webdriverio wdio 文件更改 selenium-standalone 端口号?

转载 作者:行者123 更新时间:2023-12-02 23:15:49 32 4
gpt4 key购买 nike

我需要更改默认使用的 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 服务器。

最佳答案

要在特定端口上运行selenium-standalone,您应该使用以下语法:

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

更改wdi.conf.js中的端口:

seleniumArgs: {
seleniumArgs: ["-port", "7777"],
},

此外,请阅读有关 wdio 配置文件的更多信息 here以及关于 wdio-cli here

因此,您的最终 wdio.conf.js 应该如下所示:

exports.config = {
/**
* server configurations
*/
services: ['selenium-standalone'],
port: 7777,
seleniumArgs: {
seleniumArgs: ["-port", "7777"],
},
}

关于javascript - 如何通过 webdriverio wdio 文件更改 selenium-standalone 端口号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57178189/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com