3.0.0 • Published 3 years ago

wdio-helpers v3.0.0

Weekly downloads
57
License
ISC
Repository
github
Last release
3 years ago

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-helpersWebdriverIO
V 1.xUpto 4.x
V 2.x5.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

3.0.0

3 years ago

3.0.0-beta

3 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago