From 117162d3666b4477c4f8a00f584cf905b8ed95d6 Mon Sep 17 00:00:00 2001 From: mahula Date: Tue, 13 Jun 2023 13:54:31 +0200 Subject: [PATCH] adapt passwort reset e2e test to changes in vue component --- .../step_definitions/user_profile_change_password_steps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e-tests/cypress/support/step_definitions/user_profile_change_password_steps.ts b/e2e-tests/cypress/support/step_definitions/user_profile_change_password_steps.ts index 1dcbe69ef..5989bfffb 100644 --- a/e2e-tests/cypress/support/step_definitions/user_profile_change_password_steps.ts +++ b/e2e-tests/cypress/support/step_definitions/user_profile_change_password_steps.ts @@ -7,7 +7,7 @@ const profilePage = new ProfilePage() And('the user opens the change password menu', () => { cy.get(profilePage.openChangePassword).click() cy.get(profilePage.newPasswordRepeatInput).should('be.visible') - cy.get(profilePage.submitNewPasswordBtn).should('be.disabled') + cy.get(profilePage.submitNewPasswordBtn).should('have.class','btn-light') }) When('the user fills the password form with:', (table) => {