WebdriverIO service for better TestingBot integration
npm install wdio-testingbot-service




WDIO TestingBot Service
==========
> A WebdriverIO service. It updates the job metadata ('name', 'passed', 'tags', 'public', 'build', 'extra') and runs TestingBot Tunnel if desired.
The easiest way is to keep wdio-testingbot-service as a devDependency in your package.json.
``json`
{
"devDependencies": {
"wdio-testingbot-service": "~0.1"
}
}
You can simple do it by:
`bash`
npm install wdio-testingbot-service --save-dev
Instructions on how to install WebdriverIO can be found here.
In order to use the service you need to set user and key in your wdio.conf.js file, and set the host option to 'hub.testingbot.com'. If you want to use TestingBot TunneltbTunnel: true
you just need to set .
`js`
// wdio.conf.js
export.config = {
// ...
services: ['testingbot'],
user: process.env.TB_KEY,
key: process.env.TB_SECRET,
tbTunnel: true,
// ...
};
Type: String
Type: String
Type: Booleanfalse
Default:
Type: Object{}`
Default:
----
For more information on WebdriverIO see the homepage.