31 lines
1.6 KiB
Gherkin
31 lines
1.6 KiB
Gherkin
@core @core_admin
|
|
Feature: An administrator can manage TinyMCE subplugins
|
|
In order to alter the user experience
|
|
As an admin
|
|
I can manage TinyMCE subplugins
|
|
|
|
@javascript
|
|
Scenario: An administrator can control the enabled state of TinyMCE subplugins using JavaScript
|
|
Given I am logged in as "admin"
|
|
And I navigate to "Plugins > Text editors > TinyMCE editor > General settings" in site administration
|
|
When I click on "Disable Tiny equation editor" "link"
|
|
Then I should see "Tiny equation editor disabled."
|
|
And "Disable Tiny equation editor" "link" should not exist
|
|
But "Enable Tiny equation editor" "link" should exist
|
|
When I click on "Enable Tiny equation editor" "link"
|
|
Then I should see "Tiny equation editor enabled."
|
|
And "Enable Tiny equation editor" "link" should not exist
|
|
But "Disable Tiny equation editor" "link" should exist
|
|
|
|
Scenario: An administrator can control the enabled state of TinyMCE subplugins without JavaScript
|
|
Given I am logged in as "admin"
|
|
And I navigate to "Plugins > Text editors > TinyMCE editor > General settings" in site administration
|
|
When I click on "Disable Tiny equation editor" "link"
|
|
Then I should see "Tiny equation editor disabled."
|
|
And "Disable Tiny equation editor" "link" should not exist
|
|
But "Enable Tiny equation editor" "link" should exist
|
|
When I click on "Enable Tiny equation editor" "link"
|
|
Then I should see "Tiny equation editor enabled."
|
|
And "Enable Tiny equation editor" "link" should not exist
|
|
But "Disable Tiny equation editor" "link" should exist
|