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