9 lines
193 B
JavaScript
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.
|
|
};
|