gpt4 book ai didi

javascript - 以下错误源自您的应用程序代码,而不是 Cypress

转载 作者:行者123 更新时间:2023-12-05 00:25:59 24 4
gpt4 key购买 nike

我试图测试这个简单的代码

       type Url = string
it('loads examples', () => {
const url: Url = 'https://www.ebay.com/'
cy.visit(url)
cy.get('input[type="text"]').type('book')
cy.get('#gh-btn').click();

})
然后我遇到了这个错误
enter image description here
我该如何解决

最佳答案

尝试在 support/index.js 中添加它:

import './commands'
Cypress.on('uncaught:exception', (err, runnable) => {
// returning false here prevents Cypress from failing the test
return false
})
这应该避免 click() 中的未捕获:异常方法。

关于javascript - 以下错误源自您的应用程序代码,而不是 Cypress ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62980435/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com