From ca0e0d2fcfe030ce310a31ad96b5a584b21a34f8 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Mon, 21 Oct 2024 12:17:04 +0530 Subject: [PATCH] test: Scroll list_title into view --- cypress/integration/web_form.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cypress/integration/web_form.js b/cypress/integration/web_form.js index e9cd8100a7..c93593908d 100644 --- a/cypress/integration/web_form.js +++ b/cypress/integration/web_form.js @@ -87,6 +87,10 @@ context("Web Form", () => { cy.visit("/app/web-form/note"); cy.findByRole("tab", { name: "Settings" }).click(); + + cy.wait(100); + cy.get(".section-head").contains("List Settings").scrollIntoView(); + cy.fill_field("list_title", "Note List"); cy.save();