mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
60a08f925c
All scenarios that are passing are enabled to run in Jenkins. (The commit increases the number of passing scenarios from 2 to 18.) Bug: T126966 Change-Id: I9789ca42717133120197c4625bb8dad4ea496aa8
54 lines
2.1 KiB
Gherkin
54 lines
2.1 KiB
Gherkin
Feature: VisualEditor Options
|
|
|
|
Background:
|
|
Given I go to the "Options VisualEditor Test" page with content "Options VisualEditor Test"
|
|
And I click in the editable part
|
|
And I click the hamburger menu
|
|
|
|
@en.wikipedia.beta.wmflabs.org @firefox
|
|
Scenario: Options
|
|
When I click Options
|
|
Then I should see the options overlay
|
|
|
|
@en.wikipedia.beta.wmflabs.org @firefox
|
|
Scenario: Advanced Settings
|
|
When I click Advanced Settings
|
|
Then I should see the options overlay
|
|
And the options overlay should display Advanced Settings
|
|
|
|
@en.wikipedia.beta.wmflabs.org @firefox
|
|
Scenario: Page Settings
|
|
When I click Page Settings
|
|
Then I should see the options overlay
|
|
And the options overlay should display Page Settings
|
|
|
|
@en.wikipedia.beta.wmflabs.org @firefox
|
|
Scenario: Categories
|
|
When I click Categories
|
|
Then I should see the options overlay
|
|
And the options overlay should display Categories
|
|
|
|
Scenario: Advanced Settings setting fields
|
|
When I click Advanced Settings
|
|
And I click Yes for Indexed by Search Engines
|
|
And I click Yes for showing tab for adding new section
|
|
And I check the option for Enable display title
|
|
And I type "automated test" for display title textbox
|
|
And I click Apply Changes button
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then the options set in Advanced Settings panel should appear in diff view
|
|
|
|
Scenario: Setting the fields in Page Settings
|
|
When I click Page Settings
|
|
And I check the option for Redirect this page to
|
|
And I type "Linux" for redirect page
|
|
And I check the option for Prevent this redirect being updated when target page is moved
|
|
And I select the option Always for showing Table of Contents
|
|
And I check the option for Disable edit links next to each heading on this page
|
|
And I check the option for This is a Disambiguation page
|
|
And I click Apply Changes button
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then the options set in Page Settings panel should appear in diff view
|