diff --git a/tests/features/varbase/step1-init-tests/01-create-default-testing-users.feature b/tests/features/varbase/step1-init-tests/01-create-default-testing-users.feature index 4e3bd16d63746cdbb59dfdf0fbad94f1c9cfa00c..0f8cccfa3258822726e35a8ca097fa3ae44a04ff 100644 --- a/tests/features/varbase/step1-init-tests/01-create-default-testing-users.feature +++ b/tests/features/varbase/step1-init-tests/01-create-default-testing-users.feature @@ -22,7 +22,7 @@ Feature: Create default testing users. Then I should see "Created a new user account" @javascript @init @tools @local @development @staging - Scenario: Set a passeord for the test_authenticated user. + Scenario: Set a password for the test_authenticated user. When I go to "/admin/people" And I wait And I fill in "test_authenticated" for "Name or email contains" @@ -50,7 +50,7 @@ Feature: Create default testing users. Then I should see "Created a new user account" @javascript @init @tools @local @development @staging - Scenario: Set a passeord for the test_editor user. + Scenario: Set a password for the test_editor user. When I go to "/admin/people" And I wait And I fill in "test_editor" for "Name or email contains" @@ -78,7 +78,7 @@ Feature: Create default testing users. Then I should see "Created a new user account" @javascript @init @tools @local @development @staging - Scenario: Set a passeord for the test_content_admin user. + Scenario: Set a password for the test_content_admin user. When I go to "/admin/people" And I wait And I fill in "test_content_admin" for "Name or email contains" @@ -105,7 +105,7 @@ Feature: Create default testing users. Then I should see "Created a new user account" @javascript @init @tools @local @development @staging - Scenario: Set a passeord for the test_seo_admin user. + Scenario: Set a password for the test_seo_admin user. When I go to "/admin/people" And I wait And I fill in "test_seo_admin" for "Name or email contains" @@ -133,7 +133,7 @@ Feature: Create default testing users. Then I should see "Created a new user account" @javascript @init @tools @local @development @staging - Scenario: Set a passeord for the test_site_admin user. + Scenario: Set a password for the test_site_admin user. When I go to "/admin/people" And I wait And I fill in "test_site_admin" for "Name or email contains" @@ -161,7 +161,7 @@ Feature: Create default testing users. Then I should see "Created a new user account" @javascript @init @tools @local @development @staging - Scenario: Set a passeord for the test_super_admin user. + Scenario: Set a password for the test_super_admin user. When I go to "/admin/people" And I wait And I fill in "test_super_admin" for "Name or email contains" diff --git a/tests/features/varbase/step2-apply-tests/02-user-management/02-02-admins-can-create-users-and-assign-role-them.feature b/tests/features/varbase/step2-apply-tests/02-user-management/02-02-admins-can-create-users-and-assign-role-them.feature index e5b007c8237b6107176e4b88325eb4c11d111ab2..410ba54af7701aeb5ae080a32b6c918b7aa5035c 100644 --- a/tests/features/varbase/step2-apply-tests/02-user-management/02-02-admins-can-create-users-and-assign-role-them.feature +++ b/tests/features/varbase/step2-apply-tests/02-user-management/02-02-admins-can-create-users-and-assign-role-them.feature @@ -14,14 +14,32 @@ So that they will be able to use the site. And I should see "Username" And I should see "Email address" - @javascript @local @development @staging @production + @javascript @init @tools @local @development @staging Scenario: Check if admins can create a new user account as an (authenticated user). - Given I go to "/admin/people/create" + When I go to "/admin/people/create" + And I wait + Then I should see "Add user" When I fill in "tester@vardot.com" for "Email address" And I fill in "Tester" for "Username" - And I fill in "dD.123123ddd" for "Password" - And I fill in "dD.123123ddd" for "Confirm password" And I press "Create new account" + And I wait + Then I should see "Created a new user account" + + @javascript @init @tools @local @development @staging + Scenario: Set a password for the Tester user. + When I go to "/admin/people" + And I wait + And I fill in "test_authenticated" for "Name or email contains" + And I press "Filter" + And I wait + Then I should see "test_authenticated" + When I click "Edit" in the "test_authenticated" row + Then I should see "test_authenticated" + When I fill in "dD.123123ddd" for "Password" + And I fill in "dD.123123ddd" for "Confirm password" + And I press "Save" + And I wait + Then I should see "The changes have been saved." @javascript @cleanup @local @development @staging @production Scenario: Delete the Tester user.