mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2026-01-30 18:03:37 +01:00
Allow @ in usernames (#742)
This commit is contained in:
@@ -26,7 +26,7 @@ Cypress.Commands.add('login', (options = {}) => {
|
||||
cy.get("#kc-login").click();
|
||||
} else if (Cypress.env('AUTH') === 'authelia') {
|
||||
cy.contains("Login with OIDC").should('be.visible').click();
|
||||
cy.get("#username-textfield").should('be.visible').type("bob");
|
||||
cy.get("#username-textfield").should('be.visible').type("bob@example.com");
|
||||
cy.get("#password-textfield").type("bob");
|
||||
cy.get("#sign-in-button").click();
|
||||
cy.get("#accept-button").should('be.visible').click();
|
||||
|
||||
Reference in New Issue
Block a user