From 79b0ec76ae9762518d9bdf48c39dc9dec055bb23 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Wed, 10 Jan 2024 18:59:42 +0530 Subject: [PATCH] test: increase delay after focus Cypress can't automatically wait for correct time here, it ends up focusing at wrong field. --- cypress/integration/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/form.js b/cypress/integration/form.js index 73df3b1ab0..7c3d6cea03 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -7,7 +7,7 @@ const jump_to_field = (field_label) => { .type("{enter}") .wait(200) .type("{enter}") - .wait(500); + .wait(1000); }; const type_value = (value) => {