Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. it('log in', function () {
  2.  cy.visit('/login')
  3.  cy.get('input[name=username]').type(username);
  4.  cy.get('input[name=password]').type(password);
  5.  cy.contains('Login').click();
  6.  
  7.  cy.url().should('include', '/dashboard');
  8.  });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement