You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using the very useful cy.dataCy selector, it doesn't automatically add double quotes surrounding the data-cy selector, as it is instead clearly stated in the documentation.
This leads to issues when using special characters in the data-cy names, as per my use case when using dots to name different sections of a component.
At the moment I'm working it around by adding the double quotes myself (cy.dataCy('"<selector>"')) but it's kinda annoying to do and ugly to look at.