From d9e09d5883e6cca4c61c874e1518dc92dd0a1bde Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 12 Mar 2024 17:41:51 +0100 Subject: [PATCH] test(cypress): Scroll element in the center of the view This avoid elements to be hided by a fixed top bar. Especially useful for the file list. Signed-off-by: Louis Chemineau --- cypress.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cypress.config.ts b/cypress.config.ts index 8aa4bd48b24..d7e8743434e 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -32,6 +32,10 @@ export default defineConfig({ // faster video processing videoCompression: false, + // Prevent elements to be scrolled under a top bar during actions (click, clear, type, etc). Default is 'top'. + // https://github.com/cypress-io/cypress/issues/871 + scrollBehavior: 'center', + // Visual regression testing env: { failSilently: false,