From 0db322474b4de37bedb37028ccb6bb263a34749f Mon Sep 17 00:00:00 2001 From: jorgep Date: Fri, 14 Feb 2025 18:04:03 +0100 Subject: [PATCH] feat: refs #8484 overwrite Cypress visit command to ensure main element exists --- test/cypress/support/commands.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 3f14d9677..ffd967b13 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -399,3 +399,9 @@ Cypress.Commands.add('clickButtonWithIcon', (iconClass) => { Cypress.Commands.add('clickButtonWithText', (buttonText) => { cy.get('.q-btn').contains(buttonText).click(); }); + + +Cypress.Commands.overwrite('visit', (originalFn, url, options) => { + originalFn(url, options); + cy.get('main', { timeout: 10000 }).should('exist'); +}); \ No newline at end of file