Questions tagged «cypress»

6
赛普拉斯:测试元素是否不存在
我希望能够单击一个复选框,并测试Cypress中DOM中是否不再有某个元素。有人可以建议您如何做吗? //This is the Test when the check box is clicked and the element is there cy.get('[type="checkbox"]').click(); cy.get('.check-box-sub-text').contains('Some text in this div.') 我想做与上面测试相反的事情。因此,当我再次单击它时,具有类的div不应位于DOM中。
145 cypress 

6
赛普拉斯:仅运行一项测试
我只想切换运行一个测试,所以不必等待其他测试来查看一个测试的结果。 目前,我注释掉了其他测试,但这确实很烦人。 有没有一种方法可以切换仅运行一个测试Cypress?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.