mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
1236387abd
Paired with: Chris McMahon Bug: 58040 Change-Id: I83d4c391fc101bda8c18a6d0c533ca75795569ff
21 lines
860 B
Gherkin
21 lines
860 B
Gherkin
@edit_user_page @firefox @login
|
|
Feature: VisualEditor Headings
|
|
|
|
Scenario Outline: Cycle through headings values
|
|
When I click the down arrow on Headings interface
|
|
And I click <headings_interface_name>
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then <headings_string> should appear in the diff view
|
|
And I can click the X on the save box
|
|
Examples:
|
|
| headings_interface_name | headings_string |
|
|
| Paragraph | "^Editing" |
|
|
| Heading | "^== Editing" |
|
|
| Subheading1 | "^=== Editing" |
|
|
| Subheading2 | "^==== Editing" |
|
|
| Subheading3 | "^===== Editing" |
|
|
| Subheading4 | "^====== Editing" |
|
|
| Preformatted | " Editing" |
|
|
| Page title | "^= Editing" |
|