for Webdriver.io what other values can runner take in wdio.conf.js besides runner: 'local'? Any examples?
Thanks
for Webdriver.io what other values can runner take in wdio.conf.js besides runner: 'local'? Any examples?
Thanks
OK, found out from the official WDIO chat that only local is supported for now.
Perhaps such an example will help you?from my work example
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
}
};