mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 19:21:39 +00:00
d13959b8b5
These tests fail as the log_in step seems to be broken in the Ruby Selenium gem. Disabling these makes it possible to merge code at the cost of lowering test coverage and risk of regressions. I'm hoping for help from RelEng to get these restored promptly Bug: T219920 Change-Id: I8e0883e8988293828801be2769db88ac244cb866
42 lines
1.5 KiB
Gherkin
42 lines
1.5 KiB
Gherkin
@test2.m.wikipedia.org @login
|
|
Feature: Wikitext Editor (Makes actual saves)
|
|
|
|
Background:
|
|
Given I am logged into the mobile website
|
|
|
|
@editing
|
|
Scenario: It is possible to edit
|
|
Given I go to a page that has languages
|
|
When I click the edit button
|
|
And I see the wikitext editor overlay
|
|
And I type "ABC GHI" into the editor
|
|
And I click continue
|
|
And I click submit
|
|
And I do not see the wikitext editor overlay
|
|
Then I should see a toast notification
|
|
|
|
@editing @en.m.wikipedia.beta.wmflabs.org
|
|
Scenario: Redirects
|
|
Given the page "Selenium wikitext editor test" exists
|
|
And I am on a page that does not exist
|
|
When I click the edit button
|
|
And I clear the editor
|
|
And I type "#REDIRECT [[Selenium wikitext editor test]]" into the editor
|
|
And I click continue
|
|
And I click submit
|
|
And I say OK in the confirm dialog
|
|
And I do not see the wikitext editor overlay
|
|
Then the text of the first heading should be "Selenium wikitext editor test"
|
|
|
|
@editing @en.m.wikipedia.beta.wmflabs.org
|
|
Scenario: Broken redirects
|
|
Given I am on a page that does not exist
|
|
When I click the edit button
|
|
And I clear the editor
|
|
And I type "#REDIRECT [[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA]]" into the editor
|
|
And I click continue
|
|
And I click submit
|
|
And I say OK in the confirm dialog
|
|
And I do not see the wikitext editor overlay
|
|
Then there should be a red link with text "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
|