test: add wait before jumping field

This commit is contained in:
Ejaaz Khan 2025-12-04 17:52:52 +05:30
parent 508b6da569
commit 0a2248433d

View file

@ -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");
});