diff --git a/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.ResetPassword.feature b/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.ResetPassword.feature index a2fd3b36a..55ca87215 100644 --- a/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.ResetPassword.feature +++ b/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.ResetPassword.feature @@ -9,7 +9,7 @@ Feature: User Authentication - reset password # | bibi@bloxberg.de | Aa12345_ | Bibi Bloxberg | Scenario: Reset password from signin page successfully - Given the browser navigates to page "/login" + Given the user navigates to page "/login" And the user navigates to the forgot password page When the user enters the e-mail address "bibi@bloxberg.de" And the user submits the e-mail form diff --git a/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.feature b/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.feature index e2c459692..3b460efc6 100644 --- a/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.feature +++ b/e2e-tests/cypress/tests/cypress/e2e/User.Authentication.feature @@ -11,7 +11,7 @@ Feature: User authentication # | bibi@bloxberg.de | Aa12345_ | Bibi Bloxberg | Scenario: Log in successfully - Given the browser navigates to page "/login" + Given the user navigates to page "/login" When the user submits the credentials "bibi@bloxberg.de" "Aa12345_" Then the user is logged in with username "Bibi Bloxberg" diff --git a/e2e-tests/cypress/tests/cypress/e2e/User.Registration.feature b/e2e-tests/cypress/tests/cypress/e2e/User.Registration.feature index 9361d2b84..ed53bb4b0 100644 --- a/e2e-tests/cypress/tests/cypress/e2e/User.Registration.feature +++ b/e2e-tests/cypress/tests/cypress/e2e/User.Registration.feature @@ -4,7 +4,7 @@ Feature: User registration @skip Scenario: Register successfully - Given the browser navigates to page "/register" + Given the user navigates to page "/register" When the user fills name and email "Regina" "Register" "regina@register.com" And the user agrees to the privacy policy And the user submits the registration form diff --git a/e2e-tests/cypress/tests/cypress/e2e/UserProfile.ChangePassword.feature b/e2e-tests/cypress/tests/cypress/e2e/UserProfile.ChangePassword.feature index ceee131fb..aa853f6ff 100644 --- a/e2e-tests/cypress/tests/cypress/e2e/UserProfile.ChangePassword.feature +++ b/e2e-tests/cypress/tests/cypress/e2e/UserProfile.ChangePassword.feature @@ -12,7 +12,7 @@ Feature: User profile - change password Given the user is logged in as "bibi@bloxberg.de" "Aa12345_" Scenario: Change password successfully - Given the browser navigates to page "/profile" + Given the user navigates to page "/profile" And the user opens the change password menu When the user fills the password form with: | Old password | Aa12345_ | diff --git a/e2e-tests/cypress/tests/cypress/support/step_definitions/common_steps.ts b/e2e-tests/cypress/tests/cypress/support/step_definitions/common_steps.ts index 42142380b..e2d66f76a 100644 --- a/e2e-tests/cypress/tests/cypress/support/step_definitions/common_steps.ts +++ b/e2e-tests/cypress/tests/cypress/support/step_definitions/common_steps.ts @@ -3,7 +3,7 @@ import { OverviewPage } from "../../e2e/models/OverviewPage"; import { SideNavMenu } from "../../e2e/models/SideNavMenu"; import { Toasts } from "../../e2e/models/Toasts"; -Given("the browser navigates to page {string}", (page: string) => { +Given("the user navigates to page {string}", (page: string) => { cy.visit(page); });