11@apache
22Feature : app-files-tags
33
4- Scenario : show the input field for tags in the details view
5- Given I am logged in
6- And I open the details view for "welcome.txt"
7- And I see that the details view is open
8- When I open the input field for tags in the details view
9- Then I see that the input field for tags in the details view is shown
4+ # Scenario: show the input field for tags in the details view
5+ # Given I am logged in
6+ # And I open the details view for "welcome.txt"
7+ # And I see that the details view is open
8+ # When I open the input field for tags in the details view
9+ # Then I see that the input field for tags in the details view is shown
1010
11- Scenario : show the input field for tags in the details view after closing and opening the details view again
12- Given I am logged in
13- And I open the details view for "welcome.txt"
14- And I see that the details view is open
15- And I close the details view
16- And I see that the details view is closed
17- And I open the details view for "welcome.txt"
18- And I see that the details view is open
19- When I open the input field for tags in the details view
20- Then I see that the input field for tags in the details view is shown
11+ # Scenario: show the input field for tags in the details view after closing and opening the details view again
12+ # Given I am logged in
13+ # And I open the details view for "welcome.txt"
14+ # And I see that the details view is open
15+ # And I close the details view
16+ # And I see that the details view is closed
17+ # And I open the details view for "welcome.txt"
18+ # And I see that the details view is open
19+ # When I open the input field for tags in the details view
20+ # Then I see that the input field for tags in the details view is shown
2121
2222 Scenario : show the input field for tags in the details view after the sharing tab has loaded
2323 Given I am logged in
@@ -39,63 +39,63 @@ Feature: app-files-tags
3939 When I create the tag "tag1" in the settings
4040 Then I see that the dropdown for tags in the settings eventually contains the tag "tag1"
4141
42- Scenario : add tags using the dropdown in the details view
43- Given I am logged in as the admin
44- And I visit the settings page
45- And I open the "Workflow" section
46- # The "create" button does nothing before JavaScript was initialized, and
47- # the only way to detect that is waiting for the button to select tags to be
48- # shown.
49- And I see that the button to select tags is shown
50- And I create the tag "tag1" in the settings
51- And I create the tag "tag2" in the settings
52- And I create the tag "tag3" in the settings
53- And I create the tag "tag4" in the settings
54- And I see that the dropdown for tags in the settings eventually contains the tag "tag1"
55- And I see that the dropdown for tags in the settings eventually contains the tag "tag2"
56- And I see that the dropdown for tags in the settings eventually contains the tag "tag3"
57- And I see that the dropdown for tags in the settings eventually contains the tag "tag4"
58- And I log out
59- And I am logged in
60- And I open the details view for "welcome.txt"
61- And I open the input field for tags in the details view
62- # When the input field is opened the dropdown is also opened automatically.
63- When I check the tag "tag2" in the dropdown for tags in the details view
64- And I check the tag "tag4" in the dropdown for tags in the details view
65- Then I see that the tag "tag2" in the dropdown for tags in the details view is checked
66- And I see that the tag "tag4" in the dropdown for tags in the details view is checked
67- And I see that the input field for tags in the details view contains the tag "tag2"
68- And I see that the input field for tags in the details view contains the tag "tag4"
42+ # Scenario: add tags using the dropdown in the details view
43+ # Given I am logged in as the admin
44+ # And I visit the settings page
45+ # And I open the "Workflow" section
46+ # # The "create" button does nothing before JavaScript was initialized, and
47+ # # the only way to detect that is waiting for the button to select tags to be
48+ # # shown.
49+ # And I see that the button to select tags is shown
50+ # And I create the tag "tag1" in the settings
51+ # And I create the tag "tag2" in the settings
52+ # And I create the tag "tag3" in the settings
53+ # And I create the tag "tag4" in the settings
54+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag1"
55+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag2"
56+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag3"
57+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag4"
58+ # And I log out
59+ # And I am logged in
60+ # And I open the details view for "welcome.txt"
61+ # And I open the input field for tags in the details view
62+ # # When the input field is opened the dropdown is also opened automatically.
63+ # When I check the tag "tag2" in the dropdown for tags in the details view
64+ # And I check the tag "tag4" in the dropdown for tags in the details view
65+ # Then I see that the tag "tag2" in the dropdown for tags in the details view is checked
66+ # And I see that the tag "tag4" in the dropdown for tags in the details view is checked
67+ # And I see that the input field for tags in the details view contains the tag "tag2"
68+ # And I see that the input field for tags in the details view contains the tag "tag4"
6969
70- Scenario : remove tags using the dropdown in the details view
71- Given I am logged in as the admin
72- And I visit the settings page
73- And I open the "Workflow" section
74- # The "create" button does nothing before JavaScript was initialized, and
75- # the only way to detect that is waiting for the button to select tags to be
76- # shown.
77- And I see that the button to select tags is shown
78- And I create the tag "tag1" in the settings
79- And I create the tag "tag2" in the settings
80- And I create the tag "tag3" in the settings
81- And I create the tag "tag4" in the settings
82- And I see that the dropdown for tags in the settings eventually contains the tag "tag1"
83- And I see that the dropdown for tags in the settings eventually contains the tag "tag2"
84- And I see that the dropdown for tags in the settings eventually contains the tag "tag3"
85- And I see that the dropdown for tags in the settings eventually contains the tag "tag4"
86- And I log out
87- And I am logged in
88- And I open the details view for "welcome.txt"
89- And I open the input field for tags in the details view
90- # When the input field is opened the dropdown is also opened automatically.
91- And I check the tag "tag2" in the dropdown for tags in the details view
92- And I check the tag "tag4" in the dropdown for tags in the details view
93- And I check the tag "tag3" in the dropdown for tags in the details view
94- When I uncheck the tag "tag2" in the dropdown for tags in the details view
95- And I uncheck the tag "tag4" in the dropdown for tags in the details view
96- Then I see that the tag "tag2" in the dropdown for tags in the details view is not checked
97- And I see that the tag "tag4" in the dropdown for tags in the details view is not checked
98- And I see that the tag "tag3" in the dropdown for tags in the details view is checked
99- And I see that the input field for tags in the details view does not contain the tag "tag2"
100- And I see that the input field for tags in the details view does not contain the tag "tag4"
101- And I see that the input field for tags in the details view contains the tag "tag3"
70+ # Scenario: remove tags using the dropdown in the details view
71+ # Given I am logged in as the admin
72+ # And I visit the settings page
73+ # And I open the "Workflow" section
74+ # # The "create" button does nothing before JavaScript was initialized, and
75+ # # the only way to detect that is waiting for the button to select tags to be
76+ # # shown.
77+ # And I see that the button to select tags is shown
78+ # And I create the tag "tag1" in the settings
79+ # And I create the tag "tag2" in the settings
80+ # And I create the tag "tag3" in the settings
81+ # And I create the tag "tag4" in the settings
82+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag1"
83+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag2"
84+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag3"
85+ # And I see that the dropdown for tags in the settings eventually contains the tag "tag4"
86+ # And I log out
87+ # And I am logged in
88+ # And I open the details view for "welcome.txt"
89+ # And I open the input field for tags in the details view
90+ # # When the input field is opened the dropdown is also opened automatically.
91+ # And I check the tag "tag2" in the dropdown for tags in the details view
92+ # And I check the tag "tag4" in the dropdown for tags in the details view
93+ # And I check the tag "tag3" in the dropdown for tags in the details view
94+ # When I uncheck the tag "tag2" in the dropdown for tags in the details view
95+ # And I uncheck the tag "tag4" in the dropdown for tags in the details view
96+ # Then I see that the tag "tag2" in the dropdown for tags in the details view is not checked
97+ # And I see that the tag "tag4" in the dropdown for tags in the details view is not checked
98+ # And I see that the tag "tag3" in the dropdown for tags in the details view is checked
99+ # And I see that the input field for tags in the details view does not contain the tag "tag2"
100+ # And I see that the input field for tags in the details view does not contain the tag "tag4"
101+ # And I see that the input field for tags in the details view contains the tag "tag3"
0 commit comments