wdio.conf.js 文件中 'runner' 的有效值是什么?
what are the valid values for 'runner' in wdio.conf.js file?
for Webdriver.io 除了runner: 'local' runner 还可以在wdio.conf.js 中取什么值?有例子吗?
谢谢
OK,WDIO官方聊天发现目前只支持local
也许这样的例子对你有帮助?来自我的工作例子
exports.config = {
hostname: "some-test",
port: 4444,
path: "/wd/hub",
specs: ["./tests/*.ts"],
sync: true,
services: ["selenium-standalone"],
capabilities: [
{
browserName: "chrome"
}
],
baseUrl: "http://my-url",
framework: "mocha",
mochaOpts: {
ui: "bdd",
timeout: 10000
}
};
for Webdriver.io 除了runner: 'local' runner 还可以在wdio.conf.js 中取什么值?有例子吗?
谢谢
OK,WDIO官方聊天发现目前只支持local
也许这样的例子对你有帮助?来自我的工作例子
exports.config = {
hostname: "some-test",
port: 4444,
path: "/wd/hub",
specs: ["./tests/*.ts"],
sync: true,
services: ["selenium-standalone"],
capabilities: [
{
browserName: "chrome"
}
],
baseUrl: "http://my-url",
framework: "mocha",
mochaOpts: {
ui: "bdd",
timeout: 10000
}
};