loud-city-40050
07/25/2022, 1:22 PMloud-city-40050
07/25/2022, 1:22 PMcy.get()
takes too long, and my component times out before cy.get()
has the opportunity to find it. Any tips?
Code:
it.only("case 'The InvalidParameterException shows a suitable error'", () => {
onFormLayoutsPage.testPlainTextInput("email", "team");
onFormLayoutsPage.testPlainTextInput("password", "8s8d7fds!!");
cy.get('[data-cy="login"]').click();
cy.get('[data-cy="notification"]').should("have.attr", "status", "error");
});
loud-city-40050
07/25/2022, 1:47 PM