From 41f968efe8c7f8aca78a0aedeacf1faf87551f35 Mon Sep 17 00:00:00 2001 From: dinadi Date: Wed, 5 Mar 2025 15:31:46 +0200 Subject: [PATCH] Location Profile view --- .../location_profile_view.feature | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 staff_features/location_profiles/location_profile_view.feature diff --git a/staff_features/location_profiles/location_profile_view.feature b/staff_features/location_profiles/location_profile_view.feature new file mode 100644 index 0000000..5a526ac --- /dev/null +++ b/staff_features/location_profiles/location_profile_view.feature @@ -0,0 +1,26 @@ +Feature: Location Profile View + Background: + Given an administrator user is logged in + Scenario: Search Location Profile by title + Given a Location Profile has been created + When the user clicks on 'System' + And the user clicks on 'Manage Location Profiles' in the dropdown menu + And the user filters by text with the Location Profile title + Then the Location Profile is in the search results + Scenario: View Location Profile from the search results + Given a Location Profile been created + When the user clicks on 'System' + And the user clicks on 'Manage Location Profiles' in the dropdown menu + And the user filters by text with the Location Profile title + And the user clicks on 'View' + Then the Location Profile view page is displayed + Scenario: Sort Location Profiles by title + Given two Location Profiles have been created with a common keyword in their title + And the two Location Profiles are displayed sorted by ascending title + When the user clicks on 'Title' + Then the two Location Profiles are displayed sorted by descending title + Scenario: Location Profiles table download CSV + Given two Location Profiles have been created with a common keyword in their title + And the two Location Profiles are displayed in the search results + When the user clicks on 'Download CSV' + Then a CSV file is downloaded with the the two Location Profiles \ No newline at end of file