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