From 6c5c0d79211034bee14ead687e590854ab359877 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Fri, 5 Dec 2025 22:56:36 +0530 Subject: [PATCH] test: remove wait and select option --- cypress/integration/form.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cypress/integration/form.js b/cypress/integration/form.js index 6319e8ae80..bb774c44f1 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -3,6 +3,7 @@ const jump_to_field = (field_label) => { .type("{esc}") // lose focus if any .type("{ctrl+j}") // jump to field .type(field_label) + .type("{downArrow}") .wait(500) .type("{enter}") .wait(200) @@ -99,9 +100,7 @@ context("Form", () => { cy.new_form("User"); jump_to_field("Location"); // this is in collapsed section - cy.wait(500); type_value("Bermuda"); - cy.wait(500); cy.get_field("location").should("have.value", "Bermuda"); });