From f2a4697bfee64ecb2aef46db81f82a792913b337 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Fri, 5 Dec 2025 23:25:57 +0530 Subject: [PATCH] test: select option before navigating --- cypress/integration/form.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress/integration/form.js b/cypress/integration/form.js index bb774c44f1..f8792a4198 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -4,6 +4,7 @@ const jump_to_field = (field_label) => { .type("{ctrl+j}") // jump to field .type(field_label) .type("{downArrow}") + .type("{enter}") .wait(500) .type("{enter}") .wait(200)