1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| $ ./node_modules/.bin/wdio --help
WebdriverIO CLI runner
Usage: wdio [options] [configFile] config file defaults to wdio.conf.js The [options] object will override values from the config file.
Options: --help, -h prints WebdriverIO help menu --version, -v prints WebdriverIO version --host selenium server host address --port selenium server port --path Selenium server path (default: /wd/hub) --user, -u username if using a cloud service as Selenium backend --key, -k corresponding access key to the user --logLevel, -l Level of test output verbosity --coloredLogs, -c if true enables colors for log output (default: true) --screenshotPath, -s saves a screenshot to a given path if a command failes --baseUrl, -b shorten url command calls by setting a base url --waitforTimeout, -w Default timeout for all wait commands --framework, -f defines the framework (Mocha, Jasmine or Cucumber) to run the specs (default: mocha) --reporters, -r reporters to print out the results on stdout --suite overwrites the specs attribute and runs the defined suite --cucumberOpts.* Cucumber options, see the full list options at https://github.com/webdriverio/wdio-cucumber-framework#cucumberopts-options --jasmineOpts.* Jasmine options, see the full list options at https://github.com/webdriverio/wdio-jasmine-framework#jasminenodeopts-options --mochaOpts.* Mocha options, see the full list options at http://mochajs.org
|