最佳答案
我希望能够单击复选框,并测试元素不再在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中。