mirror of
https://github.com/ansible/awx.git
synced 2026-02-27 07:56:06 -03:30
11 lines
311 B
JavaScript
11 lines
311 B
JavaScript
/**
|
|
* Logout from the current session by clicking on the power off button on the
|
|
* navigation menu.
|
|
*/
|
|
exports.command = function logout () {
|
|
const logoutButton = '.at-Layout-topNav i.fa-power-off';
|
|
this
|
|
.findThenClick(logoutButton, 'css')
|
|
.waitForElementPresent('#login-button');
|
|
};
|