Assertions Flashcards
1
Q
CSS
A
cy.get(‘.completed’).should(‘have.css’, ‘text-decoration’, ‘line-through’) cy.get(‘#accordion’).should(‘not.have.css’, ‘display’, ‘none’)
2
Q
State
A
cy.get(‘:radio’).should(‘be.checked’)
3
Q
Existence
A
cy.get(‘#loading’).should(‘not.exist’)
4
Q
Visibility
A
cy.get(‘button’).should(‘be.visible’)
5
Q
Text Content
A
cy.get(‘a’).parent(‘span.help’).should(‘not.contain’, ‘click me’)
6
Q
Value
A
cy.get(‘textarea’).should(‘have.value’, ‘foo bar baz’)
7
Q
Class
A
cy.get(‘form’).find(‘input’).should(‘not.have.class’, ‘disabled’)
8
Q
Length
A
cy.get(‘li.selected’).should(‘have.length’, 3)