I have no previous experience working with Cypress and i'm stuck on such simple problem - cypress can't reach the united.com website. Any other page opens easily. Any suggestions?
visit https://www.united.com/en/us/
CypressError
Timed out after waiting 60000ms for your remote page to load.
Your page did not fire its load event within 60000ms.
You can try increasing the pageLoadTimeout value in cypress.json 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.
cypress/integration/united.com.js:14:12
12 |
13 | //Step 1 - open main page
> 14 | cy.visit(Cypress.env("env").UNITED_BASEURL)
| ^
15 |
16 | //Step 2 - select 'one-way flight'
17 | cy.get(mainRoot.body.oneway_radio_button, { timeout: 10000 }).should('be.visible').click()