wd-elements

1.0.0 • Public • Published

wd-elements

Better elements for selenium-webdriver.

Build Status Coverage Status Standard - JavaScript Style Guide
NPM wd-elements package Dependency Status devDependency Status

Why

Extensibility. As of now, selenium-webdriver exposes a single class, WebElement, yet we know the DOM is constructed of more than 58 different elements (thank you google). Now take into account the explosion of CustomElements (polymer, react, etc...). Our front end is built using components, and our integration tests should as well.

The goal of wd-elements is to provide a sane and consistent environment to author integration tests around the concept of custom elements.

Basic Usage

const webdriver = require('selenium-webdriver')
const WDE = require('wd-elements')
 
const driver = WDE(new webdriver.Builder().forBrowser('chrome').build())
 
// for the most part WDElements behave like native selenium WebElements
// the true power comes from primitives and extensibility (see advanced usage)
driver.find('#app')
  .then((app) => app.find('h1'))
  .then((h1) => h1.getText())

License

The MIT License (MIT) Copyright (c) 2016 Jarid Margolin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i wd-elements

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

62 kB

Total Files

25

Last publish

Collaborators

  • jaridmargolin