mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
58049b0c2c
selenium* jobs are a new way of running Ruby based Selenium tests. The jobs are triggered daily. Bug: T128190 Change-Id: I11554b23a0e347736a67766f8c0b9879d5a6bed9
44 lines
1.5 KiB
Gherkin
44 lines
1.5 KiB
Gherkin
@en.wikipedia.beta.wmflabs.org @firefox @skip
|
|
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 can click Cancel save
|
|
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 |
|