mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-29 08:34:54 +00:00
eea130381a
Fixed the following: 1.The workflow was incomplete and incorporated new changes 2.Wrong css pointer to the first image 3.The Given statement was defined as When in step definition file 4.Removed unnecessary/obsolete steps that was making the test to fail while we can verify the basic functionality with miminum steps. Change-Id: Ic8a265678900ed52bbed6d90e971d6c016ef610d
28 lines
1.2 KiB
Gherkin
28 lines
1.2 KiB
Gherkin
@en.wikipedia.beta.wmflabs.org @firefox @internet_explorer_10 @login @safari @test2.wikipedia.org
|
|
Feature: VisualEditor Media Interface
|
|
|
|
Background:
|
|
Given I go to the "Media Interface VisualEditor Test" page with content "Media Interface VisualEditor Test"
|
|
And I click in the editable part
|
|
|
|
Scenario Outline: VisualEditor insert new media
|
|
Given I click Media
|
|
And I enter <search_term> into media Search box
|
|
And I select an Image
|
|
And I click Use this image
|
|
|
|
When I fill in the text area for caption with "caption"
|
|
And I fill in the test area for alternative text with "alt text"
|
|
And I click "Insert"
|
|
And I click Save page
|
|
And I click Review your changes
|
|
Then diff view should show proper caption and alt text
|
|
|
|
|
|
|
|
Examples:
|
|
| search_term | expected_markup_text |
|
|
| San Francisco | [[File:California county map (San Francisco County highlighted).svg\|thumb\|150x150px]] |
|
|
| Flash video | [[File:Flash video file icon.png\|thumb\|32x32px]] |
|
|
| cunfrunti | [[File:Cunfrunti.mpg.OGG\|thumb\|183x183px]] |
|