我正在尝试加载“ https://www.easports.com/fifa/ultimate-team/web-app/”。
加载URL后,我看到Uncaught ReferenceError: data is not defined".
我需要设置一些配置吗?
我的代码是:
describe('My firts cypress', () =>{
it ('navegate to FUT web app', () =>{
cy.visit('https://www.easports.com/fifa/ultimate-team/web-app/')
})
})
答案 0 :(得分:0)
如错误所述,它不是来自赛普拉斯,而是您的应用。打开控制台后,您应该可以查看详细信息。要绕过此错误,您可以
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from
// failing the test
return false
})
到support。文件夹下的index.js。
如果有未捕获的异常,这将停止您的测试失败。参见cypress doc。