mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
f850ddf73b
All other repositories have tests in “tests” folder. For more information see: http://lists.wikimedia.org/pipermail/qa/2014-July/001663.html http://lists.wikimedia.org/pipermail/qa/2014-July/001667.html http://lists.wikimedia.org/pipermail/qa/2014-July/001672.html Change-Id: Ib1e4fa4b7203bd8217615db1ceac23a329c081f1
23 lines
951 B
Gherkin
23 lines
951 B
Gherkin
@chrome @en.wikipedia.beta.wmflabs.org @firefox @login @test2.wikipedia.org
|
|
Feature: VisualEditor Indent, Outdent
|
|
|
|
Background:
|
|
Given I go to the "Indent Outdent VisualEditor Test" page with content "Indent Outdent VisualEditor Test"
|
|
And I make the text "Indent Outdent" be selected
|
|
|
|
Scenario: Check indentation controls disabled by default
|
|
Then Decrease indentation should be disabled
|
|
And Increase indentation should be disabled
|
|
|
|
Scenario Outline: check indent and outdent enable and disable
|
|
When I click <control>
|
|
Then Decrease indentation should be <initial_state>
|
|
And Increase indentation should be <initial_state>
|
|
And I undo <control>
|
|
And Decrease indentation should be <final_state>
|
|
And Increase indentation should be <final_state>
|
|
Examples:
|
|
| control | initial_state | final_state |
|
|
| Bullets | enabled | disabled |
|
|
| Numbering | enabled | disabled |
|