Cypress Notes
Wednesday, June 29, 2022
Here's a compilation of questions and answers I've found around Cypress (the e2e testing tool) for anything running in a web browser.
Q: How to change the aria label of any element on the page A: .should() can be used to check attributes on the element selected
cy.get(selector)
**.should('have.attr', 'aria-checked', 'true');**
OTHER POSTS
Powered By Swish