4.14.25 • Published 4 years ago

webdriverio-retry v4.14.25

Weekly downloads
2,025
License
MIT
Repository
github
Last release
4 years ago

WebdriverIO

WebdriverIO-retry

Build Status NPM version Dependency Status npm Coveralls Gitter Selenium Test Status


Homepage | Developer Guide | API Reference | Contribute

Difference with webdriverio

This is considered as "customized webdriverio@4.14.4+retries per spec PR changes with w3c element locators link here due to the retry per spec isn't merged to v4 master.

The [W3C_ELEMENT_ID]: el.ELEMENT allows the browser.keys to work with newer Chrome versions.

Reference link here.

Description

This library is a Webdriver (browser automation) module for Node.JS. It makes it possible to write super easy Selenium tests in your favorite BDD/TDD test framework, that will run locally or in the cloud using Sauce Labs, BrowserStack or TestingBot.

WebdriverIO is agnostic with regards to the test framework you want to use. Cucumber, Jasmine and Mocha+Chai are supported by the configuration wizard.

Installation

npm install webdriverio

or if you want to use the wdio test runner

npm install -g webdriverio

Getting started

Simply run wdio config and the configuration helper wizard will get you set up:

wdio wizard

With all that done, have a look at the many examples.

Plugins

Grunt Integration Gulp Integration Sublime Text Plugin Atom.io Plugin Visual Regression Testing with Applitools Eyes WebRTC Analytics Plugin

Syntax example

browser.url("http://google.com");
$("#q").setValue("webdriver");
$("#btnG").click();

Notice how this is far simpler than with the original selenium-webdriverjs,

driver.get("http://www.google.com");
driver.findElement(webdriver.By.id("q")).sendKeys("webdriver");
driver.findElement(webdriver.By.id("btnG")).click();

and significantly simpler than with WD.js:

browser
    .get("http://www.google.com")
    .elementById("q")
    .sendKeys("webdriver")
    .elementById("btnG")
    .click();

For more details on the comparison between WebdriverIO, selenium-webdriverjs and WD.js, read this discussion. Also see more WebdriverIO examples in the example folder.

Need help?

If you have questions or any problems using WebdriverIO join the Gitter Chat, hit us contributor on Twitter or just file an issue on Github. We will try to get back to you as soon as possible.

Also if you miss any feature, let us know so we can make WebdriverIO even better. For news or announcements check @WebdriverIO on Twitter.

NPM Maintainers

The npm module for this library is maintained by:

History

WebdriverIO was originated by Camilo Tapia's initial Selenium project called WebdriverJS, which was the first webdriver project on NPM. In 2014, the project was renamed WebdriverIO later on.

License

MIT