16 lines
416 B
JavaScript

/// <reference types="cypress" />
describe('checking the inbox website', () => {
it('Check the login page', function() {
cy.visit('https://app.post-prod.lifen.fr/');
cy.get('#email').should("have.attr", "type", "email");
cy.get('#password').should("have.attr", "type", "password");
//cy.get('#email').type(login);
//cy.get('#password').type(mdp);
});
});