wdio-helpers
v3.0.0
Published
Webdriver IO helper functions
Downloads
10
Maintainers
Readme
WDIO Helpers
- The tests for this project to be run in
Description
These helper functions can be used with WDIO.
Install
This project uses node and npm. Go check them out if you don't have them locally installed.
npm install wdio-helpers --save
Usage ES6 Way
import {load, click} from 'wdio-helpers';
describe ('Test Suite', () => {
it ('Test1', () => {
load('https://www.google.com');
click('#lst-ib');
});
});
Usage ES5 Way
var helpers = require('wdio-helpers');
describe ('Test Suite', function() {
it ('Test1', function() {
helpers.load('https://www.google.com');
helpers.click('#lst-ib');
});
});
For a working demo see here.
Compatibility
wdio-helpers | WebdriverIO --------------------|---------------- V 1.x | Upto 4.x V 2.x | 5.x and 6.x
Resources
Contributions
There are lot of helpers to be written. Feel free to contribute to this repo. For more help reach out to me