From 4e385fdd6b98f19c2cb99d31949cdcce73b49d6a Mon Sep 17 00:00:00 2001 From: dinadi Date: Mon, 24 Feb 2025 10:45:13 +0200 Subject: [PATCH] ContainerProfile view --- .../container_profile_view.feature | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 staff_features/container_profiles/container_profile_view.feature diff --git a/staff_features/container_profiles/container_profile_view.feature b/staff_features/container_profiles/container_profile_view.feature new file mode 100644 index 0000000..08e2a4c --- /dev/null +++ b/staff_features/container_profiles/container_profile_view.feature @@ -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 \ No newline at end of file