File size: 200 Bytes
f5071ca
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
Cypress.Commands.add('validLogin', () => {
    cy.visit('/login')

    cy.get('input[name="email"]')
        .type('example@example.com')

    cy.get('input[name="password"]')
        .type('1234')
})