Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.59 KB

readme.md

File metadata and controls

52 lines (40 loc) · 1.59 KB

WDIO Helpers

alt wdio helpers

  • The tests for this project to be run in alt browserstack

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