From 0a2248433db9077c06178c018ae21a490afe6449 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Thu, 4 Dec 2025 17:52:52 +0530 Subject: [PATCH] test: add wait before jumping field --- cypress/integration/form.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cypress/integration/form.js b/cypress/integration/form.js index c533d14f03..6319e8ae80 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -99,7 +99,9 @@ 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"); });