UNPKG

agenta.js

Version:

A BDD and DSL-oriented, scalable Acceptance Testing Framework using Yadda & Webdriver.io.

11 lines (8 loc) 303 B
'use strict'; var ScreenElement = function(alias, locator){ this.locator = locator; this.alias = alias; this.defaultValue = ""; } ScreenElement.prototype.withDefaultValue = function(defaultValue) { this.defaultValue = defaultValue; return this; } exports = module.exports = ScreenElement;