首页 文章

赛普拉斯:测试元素是否不存在

提问于
浏览
18

我希望能够单击一个复选框并测试一个元素不再位于赛普拉斯的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中 .

1 回答

  • 24

    好吧这似乎有用,所以它告诉我我还有更多要了解的内容.should()

    cy.get('.check-box-sub-text').should('not.exist');
    

相关问题