You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
596 B
17 lines
596 B
@core_message @message_popup
|
|
Feature: Notification popover preferences
|
|
In order to modify my notification preferences
|
|
As a user
|
|
I can navigate to the preferences page from the popover
|
|
|
|
Background:
|
|
Given the following "users" exist:
|
|
| username | firstname | lastname | email |
|
|
| user1 | User | 1 | user1@example.com |
|
|
|
|
@javascript
|
|
Scenario: User navigates to preferences page
|
|
Given I log in as "user1"
|
|
And I open the notification popover
|
|
When I follow "Notification preferences"
|
|
Then I should see "Notification preferences"
|
|
|