-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3506790
commit 4e385fd
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
staff_features/container_profiles/container_profile_view.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Feature: Container Profile View | ||
Background: | ||
Given an administrator user is logged in | ||
Scenario: Search Container Profile by name | ||
Given a Container Profile has been created | ||
When the user clicks on 'Browse' | ||
And the user clicks on 'Container Profiles' | ||
And the user filters by text with the Container Profile name | ||
Then the Container Profile is in the search results | ||
Scenario: View Container Profile from the search results | ||
Given a Container Profile has been created | ||
When the user clicks on 'Browse' | ||
And the user clicks on 'Container Profiles' | ||
And the user filters by text with the Container Profile name | ||
And the user clicks on 'View' | ||
Then the Container Profile view page is displayed | ||
Scenario: Sort Container Profiles by name | ||
Given two Container Profiles have been created with a common keyword in their name | ||
And the two Container Profiles are displayed sorted by ascending name | ||
When the user clicks on 'Name' | ||
Then the two Container Profiles are displayed sorted by descending name | ||
Scenario: Container Profiles table download CSV | ||
Given two Container Profiles have been created with a common keyword in their name | ||
And the two Container Profiles are displayed in the search results | ||
When the user clicks on 'Download CSV' | ||
Then a CSV file is downloaded with the two Container Profiles |