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.
30 lines
1.5 KiB
30 lines
1.5 KiB
@core @core_filepicker @_file_upload
|
|
Feature: A selected file can be cancelled
|
|
In order to refine the file manager contents
|
|
As a user
|
|
I need to cancel a selected file
|
|
|
|
@javascript @_bug_phantomjs
|
|
Scenario: Cancel a selected recent file from being added to a folder
|
|
Given the following "courses" exist:
|
|
| fullname | shortname | category |
|
|
| Course 1 | C1 | 0 |
|
|
And 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 press "Save changes"
|
|
And I am on "Course 1" course homepage with editing mode on
|
|
When I add a "Folder" to section "1"
|
|
And I set the following fields to these values:
|
|
| Name | Folder name |
|
|
| Description | Folder description |
|
|
And I upload "lib/tests/fixtures/upload_users.csv" file to "Files" filemanager
|
|
And I click on "//label[contains(., 'Files')]/ancestor::div[contains(concat(' ', @class, ' '), ' fitem ')]//*[contains(@title, 'Add...')]" "xpath_element"
|
|
And I click on "Recent files" "link" in the ".fp-repo-area" "css_element"
|
|
And I click on "//a[contains(concat(' ', normalize-space(@class), ' '), ' fp-file ')][normalize-space(.)='empty.txt']" "xpath_element"
|
|
And I click on ".moodle-dialogue-focused .fp-select .fp-select-cancel" "css_element"
|
|
And I click on "Close" "button" in the "File picker" "dialogue"
|
|
And I press "Save and display"
|
|
Then I should see "upload_users.csv"
|
|
And I should not see "empty.txt"
|
|
And I should see "Folder description"
|
|
|