Merge pull request #2330 from nextcloud/fix/cypress-login-command

Adapt cypress login command to small change in login page
This commit is contained in:
Jonas 2022-04-25 13:50:32 +02:00 коммит произвёл GitHub
Родитель dfae31451c ad9cea4db7
Коммит 25389bd1df
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -33,7 +33,7 @@ Cypress.Commands.add('login', (user, password, { route, onBeforeLoad } = {}) =>
cy.visit(route)
cy.get('input[name=user]').type(user)
cy.get('input[name=password]').type(password)
cy.get('#submit-wrapper input[type=submit]').click()
cy.get('.submit-wrapper input[type=submit]').click()
cy.url().should('include', route)
})
// in case the session already existed but we are on a different route...