Skip to content

Commit

Permalink
Remove pause from login on wdio tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jpwhite4 committed Mar 12, 2019
1 parent db6baf4 commit cafe92f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ class LoginPage {
logout() {
describe('Logout', function logout() {
it('Click the logout link', function clickLogout() {
browser.pause(1000);
$('#logout_link').waitForVisible();
$('#logout_link').click();
browser.waitAndClick('#logout_link');
});
it('Display Logged out State', function clickLogout() {
browser.waitForInvisible('.ext-el-mask-msg');
Expand Down

0 comments on commit cafe92f

Please sign in to comment.