Skip to main content

Webdriver.IO integration - Selenium

Webdriverio Selenium Test example 

Open myTest.js file and write:

myTest.js Example

const assert = require('assert')
describe('webdriver.io page', () => {
it('should have the right title', async () => {
await browser.url('https://digital.ai/continuous-testing')
const title = await browser.getTitle()
assert.strictEqual(title, 'Digital.ai Continuous Testing | Scalable App & Device Testing Tool')
})
})

For more advanced capabilities that Continuous Testing offers, check here.

wdio.config.js example

exports.config = {
runner: 'local',
hostname: '<cloud-ip>',
protocol: 'https',
port: 443,
path: '/wd/hub',

specs: [
'./test/specs/**/*.js'
],
capabilities: [{
'experitest:accessKey': '<AccessKey>', // Or userName, password and projectName if needed
platformName: 'windows', // Optional
browserVersion: 'latest', // Optional
browserName: 'firefox', // Optional
'experitest:testName': 'Selenium WebdriverIO test', // Optional
}],

mochaOpts: {
ui: 'bdd',
timeout: 60000
},
}

Webdriverio Run

Window run

To run your tests, execute:

bash

npx wdio run .\wdio.conf.js

Mac run

To run your tests, execute:

bash

npx wdio run ./wdio.conf.js