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

9 lines
193 B
JavaScript

exports.command = function(email, password) {
this
.verify.elementPresent("#logoutButton")
.click("#logoutButton").pause(500)
return this; // allows the command to be chained.
};