mediawiki-extensions-Visual.../modules/ve-mw/test/browser/features/headings.feature
cmcmahon c6a1bbdacf Disable headings test while Bug 61856 is under investigation
This is an expensive test and I'd rather not run it than
have it always failing.

Change-Id: I8ee30bf3e6eb0841f51a4ab02610dd2b3ce8349e
2014-02-25 07:59:12 -07:00

22 lines
902 B
Gherkin

@ie6-bug @ie7-bug @ie8-bug @ie9-bug @ie10-bug @login
Feature: VisualEditor Headings
@edit_user_page
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" |