Skip to content

Commit

Permalink
fix keycloak html form change from input > button
Browse files Browse the repository at this point in the history
  • Loading branch information
clean-coder authored and peggimann committed Oct 30, 2024
1 parent 401a1cf commit 429fb7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ function loginWithCredentials(username: string, password: string) {
cy.origin(Cypress.env('login_url'), { args: { username, password } }, ({ username, password }) => {
cy.get('input[name="username"]').type(username);
cy.get('input[name="password"]').type(password);
cy.get('input[type="submit"]').click();
cy.get('button[type="submit"]').click();
cy.wait('@getCurrentUser', { responseTimeout: 10000 });
});
cy.url().then((url) => {
Expand Down

0 comments on commit 429fb7d

Please sign in to comment.