mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
966f2f7bbb
To get at least some Cucumber scenarios running in Jenkins, disable all of them that are failing and run only ones that are passing. The next step will be to fix failing scenarios. Bug: T94162 Change-Id: Id0338c1d6b86d6b45220c5c0802074be397fb607
29 lines
1 KiB
Gherkin
29 lines
1 KiB
Gherkin
Feature: VisualEditor Links
|
|
|
|
Background:
|
|
Given I go to the "Links VisualEditor Test" page with content "Links VisualEditor Test"
|
|
And I click in the editable part
|
|
And I click the Link button
|
|
And I can see the Link User Inteface
|
|
|
|
Scenario: Enter external link
|
|
When I enter external link http://www.example.com into link Content box
|
|
And I click Done to close Link User Interface
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then an external link appears in the diff view
|
|
|
|
Scenario: Enter internal link
|
|
When I enter internal link Main Page into link Content box
|
|
And I click Done to close Link User Interface
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then an internal link appears in the diff view
|
|
|
|
Scenario: Enter non-existing link
|
|
When I enter non existing link DoesNotExist into link Content box
|
|
And I click Done to close Link User Interface
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then a non-existing link appears in the diff view
|