Cypress - Assertions
Consider this Cypress code snippet:
What will happen if the element
cy.get('.alert').should('not.exist')
cy.get('.alert').should('not.be.visible')What will happen if the element
.alert is present but hidden?