Frontend principal de GEMCO
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GEMCOFrontend/cypress/e2e/login.cy.ts

13 lines
271 B

2 years ago
/// <reference types="cypress" />
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()
})
})