fe-nightwatch-common
v0.0.16
Published
Form helpers for nightwatch tests
Readme
Fusion Frontend: Nightwatch Common
A collection of assertions, commands and common step tests used with Nightwatch.js
Api
querystringContainsKey
Assert that the querystring contains a certain key
module.exports = {
"querystring contains foo " : function (client) {
client.assert.querystringContainsKey('foo');
}
}Parameters
keystring [description]
querystringKeyIs
Assert a querystring key value
module.exports = {
"querystring foo is bar " : function (client) {
client.assert.querystringKeyIs('foo', 'bar')
}
}Parameters
waitForUrl
executes command
Parameters
url[type] [description]milliseconds[type] [description]timeout[type] [description]messages[type] [description]callbackFunction [description]
Returns [type] [description]
waitForUrlToContain
Waiting for url expected
Parameters
urlstring [url expected to contain]millisecondsnumber [total time until command times out]timeoutnumber [time to wait before command starts polling the URL]messagesObject [message output]callbackFunction [callback]
Returns [type] [client]
templateAnswer
declaritive answers processing
Parameters
answer[type] [description]
Returns [type] [description]
