ncatestify / cypress-base-plugin

Cypress.IO plugin to start website testing
3 stars 7 forks source link

Is page fully loaded #26

Closed rogoit closed 8 months ago

rogoit commented 1 year ago

function isPageLoaded() { return cy.window().then((win) => { return new Promise((resolve, reject) => { win.addEventListener('load', resolve); if (win.document.readyState === 'complete') { resolve(); } }); }); }