-
Notifications
You must be signed in to change notification settings - Fork 203
Expand file tree
/
Copy pathbreadcrumb.feature
More file actions
33 lines (31 loc) · 1.32 KB
/
breadcrumb.feature
File metadata and controls
33 lines (31 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@predefined-users
Feature: access breadcrumb
As a user
I want to browse to parent folders using breadcrumb
So that I can access resources with ease
Scenario: breadcrumb navigation
Given "Admin" creates following user using API
| id |
| Alice |
And "Alice" logs in
And "Alice" creates the following resources
| resource | type |
| parent/folder%2Fwith%2FSlashes | folder |
And "Alice" opens folder "parent/folder%2Fwith%2FSlashes"
And "Alice" creates the following resources
| resource | type |
| 'single-double quotes" | folder |
And "Alice" opens folder "\'single-double quotes\""
And "Alice" creates the following resources
| resource | type |
| "inner" double quotes | folder |
And "Alice" opens folder "\"inner\" double quotes"
And "Alice" creates the following resources
| resource | type |
| sub-folder | folder |
And "Alice" opens folder "sub-folder"
When "Alice" navigates to folder "\"inner\" double quotes" via breadcrumb
And "Alice" navigates to folder "\'single-double quotes\"" via breadcrumb
And "Alice" navigates to folder "folder%2Fwith%2FSlashes" via breadcrumb
And "Alice" navigates to folder "parent" via breadcrumb
And "Alice" logs out