forked from cucumber/cucumber-java-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
createfolder.feature
32 lines (27 loc) · 1.08 KB
/
createfolder.feature
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
@createfolder
Feature: Create a new folder
As a user
I want to create new folders in my account,
so that i will put order in my file structure
Background: User is logged in
Given user Alice is logged
@smoke
Scenario: Create a new folder with a correct name in root
When Alice selects the option Create Folder
And Alice sets create1 as new name
Then Alice should see create1 in the filelist
@ignore
Scenario: Create a new folder with a correct name in non-root
Given the following items have been created in Alice account
| folder | create2 |
When Alice browses into create2
And Alice selects the option Create Folder
And Alice sets create3 as new name
Then Alice should see create2/create3 in the filelist
Scenario: Create a new folder with an existing name
Given the following items have been created in Alice account
| folder | create4 |
When Alice selects the option Create Folder
And Alice sets create4 as new name
Then Alice should see the following error
| The resource you tried to create already exists |