-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with Moodle 4.1 that user add page is not displayed.
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@editor @tiny @editor_tiny @tiny_cloze @javascript | ||
Feature: Check that the user edit page appears and no exception is thrown. | ||
|
||
Background: | ||
Given the following "courses" exist: | ||
| fullname | shortname | | ||
| Course fullname | C_shortname | | ||
And the following "user preferences" exist: | ||
| user | preference | value | | ||
| admin | htmleditor | tiny | | ||
And I log in as "admin" | ||
|
||
@javascript | ||
Scenario: Open the page to add a user | ||
When I navigate to "Users > Add a new user" in site administration | ||
Then I should see "First name" | ||
And I click on the "Image" button for the "Description" TinyMCE editor |