From 05f1e03b1a1d96a6789714bbb0a9ebbcb2088247 Mon Sep 17 00:00:00 2001 From: Robbie Blaine Date: Tue, 27 Feb 2024 12:13:02 +0200 Subject: [PATCH] Wait 1s before/after entering opportunity keywords --- cypress/e2e/opportunities.cy.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress/e2e/opportunities.cy.ts b/cypress/e2e/opportunities.cy.ts index e69e2fa68..87bfccf6c 100644 --- a/cypress/e2e/opportunities.cy.ts +++ b/cypress/e2e/opportunities.cy.ts @@ -103,7 +103,9 @@ describe(`Opportunities`, function () { cy.get("button[type=submit]").should("exist").click(); //* step 4: fill out form and click next + cy.wait(1000); cy.get("input[id=input_keywords]").type("keyword1{enter}keyword2{enter}keyword3{enter}"); + cy.wait(1000); cy.get("button[type=submit]").should("exist").click();