我想让Cypry等到我的web应用程序全部打开。有些元素彼此独立加载,我必须等待全屏加载,因为在这之后我想用percy拍摄快照。我该怎么处理?有可能使它依赖于一些例如html类吗?
这个问题的Cypry破解方法是cy.get('button', {timeout: 2000})
然而,我建议使用像柏树一样的图书馆。这将为您提供类似的语法
cy.waitUntil(() =>
cy.get("input[type=hidden]#recaptchatoken")
.then($el => $el.val()))
// ... then, check that it's valid string asserting about it
.then(token => expect(token).to.be.a("string").to.have.length.within(1,1000));