/// describe('empty spec', () => { it('log in ok', () => { cy.visit('') cy.get('[name="Usuario"]') .type('alfonso') cy.get('[name="Contrasena"]') .type('garcia') cy.get('[type="submit"]') .click() }) })