visible -> exist in browser tests

This commit is contained in:
Gabe Kangas
2022-12-12 19:28:19 -08:00
parent 49b21dfcec
commit 6c169bc9b7

View File

@@ -27,7 +27,7 @@ filterTests(['desktop'], () => {
// Loop over each identifier and verify it exists.
identifiers.forEach((identifier) => {
it(`Has identifier: ${identifier}`, () => {
cy.get(identifier).should('be.visible');
cy.get(identifier).should('exist');
});
});