21 lines
717 B
Gherkin
Raw Normal View History

Feature: My Profile
As a CMS user
I want to be able to change personal settings
In order to streamline my CMS experience
2013-10-07 00:04:50 +02:00
Background:
Given I am logged in with "ADMIN" permissions
@javascript
Scenario: I can see date formatting help
# Only tests this specific field and admin UI because its got built-in tooltips
2013-10-07 00:04:50 +02:00
Given I go to "/admin/myprofile"
And I follow "Show formatting help"
2013-10-07 00:04:50 +02:00
Then I should see "Four-digit year"
Scenario: I can change the interface language
Given I go to "/admin/myprofile"
Then I should see "My Profile"
When I fill in "German (Germany)" for the "Interface Language" dropdown
And I press the "Save" button
Then I should see "Mein Profil"