how to bypass validation in cypress test cases
I am using cypress and I need to bypass validation using cypress
cy.get(“[name=email]”)
.should(“be.visible”)
.type(username)
.should(“have.value”, username);
cy.get(“[name=password]”)
.should(“be.visible”)
.type(password)
.should(“have.value”, password);
cy.get(“.gap-2 > .inline-flex”).click();