Skip to content

Commit 7faea03

Browse files
authored
fix: allow curly braces in password string (#438)
1 parent d57e956 commit 7faea03

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ui.tests/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
secret
1+
secret
2+
test-module/cypress/results
3+
!test-module/cypress/results/.gitkeep

ui.tests/test-module/cypress/support/aem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Cypress.Commands.add('AEMLogin', function (username, password) {
4444
cy.get('#login').should('have.attr', 'action', '/libs/granite/core/content/login.html/j_security_check')
4545

4646
cy.get('#username').type(username)
47-
cy.get('#password').type(password, { log: false })
47+
cy.get('#password').type(password, { log: false, parseSpecialCharSequences: false })
4848

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

0 commit comments

Comments
 (0)