6
Cypress : 요소가 존재하지 않는지 테스트
확인란을 클릭하고 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