You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your page did not fire its `load` event within `60000ms`.
You can try increasing the `pageLoadTimeout` value in `cypress.config.js` to wait longer.
Browsers will not fire the `load` event until all stylesheets and scripts are done downloading.
When this `load` event occurs, Cypress will continue running commands.
This error occurred while creating the session. Because the session setup failed, we failed the test.
Desired behavior
No response
Test code to reproduce
parallel execution in jenkins
Cypress Version
13.13.0
Node version
v20.15.1
Operating System
windows 10
Debug Logs
No response
Other
No response
The text was updated successfully, but these errors were encountered:
@Priya143-art We'll need more info to diagnose what the issue is here. Your page is likely not firing the load event and we require that to resolve the visit command. There is a feature request to ignore this behavior here: #788
I am encountering an issue where only the first test spec executes successfully in continuous testing. When running individual specs, they execute properly, but when running multiple specs together, only the first one passes. Please let me know what specific details are needed so I can provide more information for troubleshooting.
please find beforeEach method beginning of test
beforeEach(()=>{
var username = Cypress.config().priya_login_credentials.email;
var password = Cypress.config().priya_login_credentials.password;
cy.Login(username,password);
var mbt_qa_url = Cypress.config().mbt_qa_url;
cy.visit(mbt_qa_url);
cy.wait(2000);
dashboardPage.waitUntilDashboardPageLoaded();
})
Current behavior
Desired behavior
No response
Test code to reproduce
parallel execution in jenkins
Cypress Version
13.13.0
Node version
v20.15.1
Operating System
windows 10
Debug Logs
No response
Other
No response
The text was updated successfully, but these errors were encountered: