Skip to content

Commit

Permalink
fix: allow curly braces in password string (#438)
Browse files Browse the repository at this point in the history
  • Loading branch information
andresbott authored Jan 4, 2024
1 parent d57e956 commit 7faea03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ui.tests/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
secret
secret
test-module/cypress/results
!test-module/cypress/results/.gitkeep
2 changes: 1 addition & 1 deletion ui.tests/test-module/cypress/support/aem.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Cypress.Commands.add('AEMLogin', function (username, password) {
cy.get('#login').should('have.attr', 'action', '/libs/granite/core/content/login.html/j_security_check')

cy.get('#username').type(username)
cy.get('#password').type(password, { log: false })
cy.get('#password').type(password, { log: false, parseSpecialCharSequences: false })

cy.get('#submit-button').click()
cy.get('coral-shell-content', { timeout: 5000 }).should('exist')
Expand Down

0 comments on commit 7faea03

Please sign in to comment.