In the Chrome Dev Tools display, there is an accessibility tree that lists accessibility IDs for all of the elements on the page. I want to use these IDs as my selectors when I am writing cypress tests using cy.get(selector).
We can select by accessibility ID in Webdriver IO using:
const elem = $('~my_accessibility_identifier') elem.click()
What is the correct selector format to use for cypress?
2.1m questions
2.1m answers
60 comments
57.0k users