You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
824 B
22 lines
824 B
2 years ago
|
@core @core_filepicker @_file_upload
|
||
|
Feature: Delete files and folders from the file manager
|
||
|
In order to clean the file manager contents
|
||
|
As a user
|
||
|
I need to delete files from file areas
|
||
|
|
||
|
@javascript @_bug_phantomjs
|
||
|
Scenario: Delete a file and a folder
|
||
|
Given I log in as "admin"
|
||
|
And I follow "Manage private files"
|
||
|
And I upload "lib/tests/fixtures/empty.txt" file to "Files" filemanager
|
||
|
And I create "Delete me" folder in "Files" filemanager
|
||
|
And I press "Save changes"
|
||
|
And I follow "Manage private files"
|
||
|
When I delete "empty.txt" from "Files" filemanager
|
||
|
And I press "Save changes"
|
||
|
Then I should not see "empty.txt"
|
||
|
And I follow "Manage private files"
|
||
|
And I delete "Delete me" from "Files" filemanager
|
||
|
And I press "Save changes"
|
||
|
And I should not see "Delete me"
|