test: refs #8484 await main content loaded #1318
|
@ -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');
|
||||
});
|
Loading…
Reference in New Issue