0

for Webdriver.io what other values can runner take in wdio.conf.js besides runner: 'local'? Any examples?

Thanks

Miha
  • 13,223
  • 2
  • 15
  • 16

2 Answers2

0

OK, found out from the official WDIO chat that only local is supported for now.

Miha
  • 13,223
  • 2
  • 15
  • 16
0

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
  }
};
  • Thanks but, really it was only about `runner: 'local'`. And found out as mentioned in the comment above that at this moment only `local` option is supported. – Miha Oct 03 '19 at 14:04