我以前没有与赛普拉斯合作的经验,我被困在这样一个简单的问题上 - 赛普拉斯无法访问 united.com 网站。任何其他页面都可以轻松打开。有什么建议么?
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()