how to check attribute value in cypress code example
Example 1: cypress have attribute
cy.get('selector')
.should('have.attr', 'aria-checked', 'true')
Example 2: cypress check element have attribute
cy.get('input').invoke('attr', 'placeholder').should('contain', 'username')