test: refs #8484 await main content loaded #1318

Merged
alexm merged 54 commits from 8484-waitToDomContentLoadedInTests into dev 2025-02-27 06:19:45 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit a4baa6812a - Show all commits

View File

@ -59,6 +59,7 @@ Cypress.Commands.add('login', (user = 'developer') => {
Cypress.Commands.overwrite('visit', (originalFn, url, options) => {
originalFn(url, options);
jorgep marked this conversation as resolved Outdated
Outdated
Review

No acabo de ver el codigo de waitUntil. Se espera x segundos, comprueba algo y sino vuelve a esperar x segundos.

Debe haber algo que te permita saber cuando ha cargado

No acabo de ver el codigo de waitUntil. Se espera x segundos, comprueba algo y sino vuelve a esperar x segundos. Debe haber algo que te permita saber cuando ha cargado
cy.waitUntil(() => cy.document().then((doc) => doc.readyState === 'complete'));
cy.waitUntil(() => cy.get('main', { timeout: 10000 }).should('exist'));
Review

Se asegura que el contenido este visible antes de hacer nada.

Se asegura que el contenido este visible antes de hacer nada.
});