mediawiki-extensions-Revisi.../tests/browser/features/expand.feature
Tobias Gritschacher eeedd58f56 Refactor expand browsertests
- Applied the Given-When-Then rule to scenarios
- Added alias for one step for better readability of scenarios

Bug: T146276
Change-Id: I08aabda113d6ad9f1bbf06161484143549b13a7c
2016-10-07 16:11:12 +02:00

26 lines
914 B
Gherkin

@chrome @en.wikipedia.beta.wmflabs.org @firefox @integration
Feature: RevisionSlider expand
Background:
Given I am logged in
And I have reset my preferences
And RevisionSlider is enabled as a beta feature
And a page with 2 revision(s) exists
Scenario: RevisionSlider is collapsed initially
Given I am on the diff page
Then There should be a RevisionSlider expand button
And RevisionSlider wrapper should be hidden
Scenario: RevisionSlider loads after expanding
Given I am on the diff page
When I click on the expand button
Then RevisionSlider wrapper should be visible
And The RevisionSlider has loaded
Scenario: RevisionSlider hides after collapsing
Given I am on the diff page
When I click on the expand button
And I wait until the RevisionSlider has loaded
And I click on the expand button
Then RevisionSlider wrapper should be hidden