Merge branch 'MDL-70760-master' of https://github.com/vietlx426/moodle-1

This commit is contained in:
Ilya Tregubov 2023-11-02 10:20:29 +08:00
commit 540dc05e1c
No known key found for this signature in database
GPG key ID: 0F58186F748E55C1
8 changed files with 216 additions and 3 deletions

View file

@ -23,3 +23,13 @@ Feature: Incoming mail configuration
When I navigate to "Server > Email > Incoming mail configuration" in site administration
Then "OAuth 2 service" "select" should exist
And I should see "Testing service" in the "OAuth 2 service" "select"
@javascript
Scenario: Check character limitations of mailbox name
When I navigate to "Server > Email > Incoming mail configuration" in site administration
And I set the field "Mailbox name" to "frogfrogfrogfrog"
Then I should see "Maximum of 15 characters"
And the "disabled" attribute of "form#adminsettings button[type='submit']" "css_element" should contain "true"
And I set the field "Mailbox name" to "frogfrogfrogfro"
And I should not see "Maximum of 15 characters"
And the "disabled" attribute of "form#adminsettings button[type='submit']" "css_element" should not be set