Guest User

Untitled

a guest
Dec 13th, 2017
492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. cy.get('#login-username').type('username');
  2. cy.get('#login-password').type(`password{enter}`);
  3.  
  4. // Check for a possible warning dialog and dismiss it
  5. if (cy.get('.warning')) {
  6. cy.get('#warn-dialog-submit').click();
  7. }
  8.  
  9. CypressError: Timed out retrying: Expected to find element: '.warning', but never found it.
  10.  
  11. cy.get('#login-username').type('username');
  12. cy.get('#login-password').type(`password{enter}`);
  13.  
  14. // Check for a possible warning dialog and dismiss it
  15. if (Cypress.$('.warning').length > 0) {
  16. cy.get('#warn-dialog-submit').click();
  17. }
Add Comment
Please, Sign In to add comment