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 38 additions and 18 deletions
Showing only changes of commit 05fe2b5b21 - Show all commits

View File

@ -35,33 +35,53 @@ Cypress.Commands.add('resetDB', () => {
});
Cypress.Commands.add('login', (user = 'developer') => {
cy.session(['user-session', user], () => {
//cy.visit('/#/login');
cy.request({
method: 'POST',
url: '/api/accounts/login',
body: {
user: user,
password: 'nightmare',
},
}).then((response) => {
window.localStorage.setItem('token', response.body.token);
cy.request({
method: 'POST',
url: '/api/accounts/login',
body: {
user: user,
password: 'nightmare',
method: 'GET',
url: '/api/VnUsers/ShareToken',
headers: {
Authorization: window.localStorage.getItem('token'),
},
}).then((response) => {
window.localStorage.setItem('token', response.body.token);
cy.request({
method: 'GET',
url: '/api/VnUsers/ShareToken',
headers: {
Authorization: window.localStorage.getItem('token'),
},
}).then(({ body }) => {
window.localStorage.setItem('tokenMultimedia', body.multimediaToken.id);
});
}).then(({ body }) => {
window.localStorage.setItem('tokenMultimedia', body.multimediaToken.id);
});
});
// cy.session(['user-session', user], () => {
// cy.request({
// method: 'POST',
// url: '/api/accounts/login',
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
// body: {
// user: user,
Review

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

Se asegura que el contenido este visible antes de hacer nada.
// password: 'nightmare',
// },
// }).then((response) => {
// window.localStorage.setItem('token', response.body.token);
// cy.request({
// method: 'GET',
// url: '/api/VnUsers/ShareToken',
// headers: {
// Authorization: window.localStorage.getItem('token'),
// },
// }).then(({ body }) => {
// window.localStorage.setItem('tokenMultimedia', body.multimediaToken.id);
// });
// });
// });
});
Cypress.Commands.overwrite('visit', (originalFn, url, options) => {
originalFn(url, options);
cy.waitUntil(() => cy.document().then((doc) => doc.readyState === 'complete'));
cy.waitUntil(() => cy.get('main', { timeout: 10000 }).should('exist'));
cy.waitUntil(() => cy.get('main').should('exist'));
});
Cypress.Commands.add('waitForElement', (element, timeout = 10000) => {