Bir onay kutusunu tıklayıp bir elemanın Cypress'teki DOM'da artık olmadığını test edebilmek istiyorum. Birisi bunu nasıl yapacağınızı önerebilir mi?
//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.')
Yukarıdaki testin tersini yapmak istiyorum. Bu yüzden tekrar tıkladığımda, sınıftaki div DOM'da olmamalı.
cy.get('.check-box-sub-text').contains('Some text in this div.')
bazı durumlarda çalışmayabilir (bazı cihazlarda). Onunla değiştirebilirsin cy.contains('.check-box-sub-text', 'Some text in this div.')
, aynı şekilde çalışacaktır.