mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
abc5b9920d
No longer needed, since the files are now in VisualEditor repository. Change-Id: Id677c2630ff5a1ae2d49f62058d0d4fdebeaf381
41 lines
1.4 KiB
Gherkin
41 lines
1.4 KiB
Gherkin
@ie6-bug @ie7-bug @ie8-bug @ie9-bug @ie10-bug @en.wikipedia.beta.wmflabs.org @test2.wikipedia.org @login
|
|
Feature: VisualEditor Bullets, Numbering
|
|
@make_selectable_line
|
|
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 | * |
|
|
|
|
@make_selectable_line
|
|
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 | ** |
|
|
|
|
@make_selectable_line
|
|
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 |
|