Skip to content

Commit

Permalink
Fixed the cypress selector class name as per 'Classic Login' lock screen
Browse files Browse the repository at this point in the history
  • Loading branch information
nandan-bhat committed Jun 19, 2024
1 parent 164a6d2 commit d6e365d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/smoke.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ if (!EMAIL || !PASSWORD) {
}

const loginToAuth0 = (): void => {
cy.get('.auth0-lock-input-username .auth0-lock-input').clear().type(EMAIL);
cy.get('.auth0-lock-input-password .auth0-lock-input').clear().type(PASSWORD);
cy.get('.auth0-lock-input-email .auth0-lock-input').clear().type(EMAIL);
cy.get('.auth0-lock-input-show-password .auth0-lock-input').clear().type(PASSWORD);
cy.get('.auth0-lock-submit').click();
};

Expand Down

0 comments on commit d6e365d

Please sign in to comment.