@@ -31,6 +31,78 @@ Feature: app-files
3131 When I open the details view for "welcome.txt"
3232 Then I see that the details view is open
3333
34+ Scenario : show recent files
35+ Given I am logged in
36+ And I create a new folder named "Folder just created"
37+ When I open the "Recent" section
38+ Then I see that the current section is "Recent"
39+ Then I see that the file list contains a file named "Folder just created"
40+
41+ Scenario : show recent files for a second time
42+ Given I am logged in
43+ And I open the "Recent" section
44+ And I see that the current section is "Recent"
45+ And I open the "All files" section
46+ And I see that the current section is "All files"
47+ And I create a new folder named "Folder just created"
48+ When I open the "Recent" section
49+ Then I see that the current section is "Recent"
50+ Then I see that the file list contains a file named "Folder just created"
51+
52+ Scenario : show favorites
53+ Given I am logged in
54+ And I mark "welcome.txt" as favorite
55+ When I open the "Favorites" section
56+ Then I see that the current section is "Favorites"
57+ Then I see that the file list contains a file named "welcome.txt"
58+
59+ Scenario : show favorites for a second time
60+ Given I am logged in
61+ And I open the "Favorites" section
62+ And I see that the current section is "Favorites"
63+ And I open the "All files" section
64+ And I see that the current section is "All files"
65+ And I mark "welcome.txt" as favorite
66+ When I open the "Favorites" section
67+ Then I see that the current section is "Favorites"
68+ Then I see that the file list contains a file named "welcome.txt"
69+
70+ Scenario : show shares
71+ Given I am logged in
72+ And I share the link for "welcome.txt"
73+ When I open the "Shares" section
74+ Then I see that the current section is "Shares"
75+ Then I see that the file list contains a file named "welcome.txt"
76+
77+ Scenario : show shares for a second time
78+ Given I am logged in
79+ And I open the "Shares" section
80+ And I see that the current section is "Shares"
81+ And I open the "All files" section
82+ And I see that the current section is "All files"
83+ And I share the link for "welcome.txt"
84+ When I open the "Shares" section
85+ Then I see that the current section is "Shares"
86+ Then I see that the file list contains a file named "welcome.txt"
87+
88+ Scenario : show deleted files
89+ Given I am logged in
90+ And I delete "welcome.txt"
91+ When I open the "Deleted files" section
92+ Then I see that the current section is "Deleted files"
93+ Then I see that the file list contains a file named "welcome.txt"
94+
95+ Scenario : show deleted files for a second time
96+ Given I am logged in
97+ And I open the "Deleted files" section
98+ And I see that the current section is "Deleted files"
99+ And I open the "All files" section
100+ And I see that the current section is "All files"
101+ And I delete "welcome.txt"
102+ When I open the "Deleted files" section
103+ Then I see that the current section is "Deleted files"
104+ Then I see that the file list contains a file named "welcome.txt"
105+
34106 Scenario : rename a file with the details view open
35107 Given I am logged in
36108 And I open the details view for "welcome.txt"
0 commit comments