mediawiki-extensions-Visual.../modules/ve-mw/tests/browser/features/bullets.feature
Željko Filipin f850ddf73b Rename "test" folder to "tests"
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
2014-07-15 18:00:32 -07:00

43 lines
1.5 KiB
Gherkin

@chrome @en.wikipedia.beta.wmflabs.org @firefox @login @test2.wikipedia.org
Feature: VisualEditor Bullets, Numbering
Background:
Given I go to the "Bullets VisualEditor Test" page with content "Bullets VisualEditor Test"
And I make the text "Bullets VisualEditor Test" be selected
Scenario Outline: check strings for bullets and numbering
When I click <control>
And I click Save page
And I click Review your changes
Then a <character> is added in front of input string in the diff view
And I can click the X on the save box
Examples:
| control | character |
| Numbering | # |
| Bullets | * |
Scenario Outline: check increase indent for bullets and numbering
When I click <control>
And I click Increase indentation
And I click Save page
And I click Review your changes
Then a <character> is added in front of input string in the diff view
And I can click the X on the save box
And I click Decrease indentation
Examples:
| control | character |
| Numbering | ## |
| Bullets | ** |
Scenario Outline: check decrease indent for bullets and numbering
When I click <control>
And I click Decrease indentation
And I click Save page
And I click Review your changes
Then nothing is added in front of input string in the diff view
And I can click the X on the save box
Examples:
| control |
| Numbering |
| Bullets |