Как осмотреть атрибуты элементов в кипарисе
cy.get('[data-test="passwordInput"]')
.invoke('attr', 'type')
.should('eq', 'password');
Perfect Pigeon
cy.get('[data-test="passwordInput"]')
.invoke('attr', 'type')
.should('eq', 'password');