ohif-viewer/LesionTracker/tests/nightwatch/commands/api/entry/reviewSignUpPage.js
2016-01-26 17:57:50 +01:00

12 lines
394 B
JavaScript

exports.command = function(username, password) {
this
.waitForElementVisible('#entrySignUp', 1000)
.verify.elementPresent("#signUpPageEmailInput")
.verify.elementPresent("#signUpPagePasswordInput")
.verify.elementPresent("#signUpPagePasswordConfirmInput")
.verify.elementPresent("#signUpPageJoinNowButton")
return this; // allows the command to be chained.
};