mediawiki-extensions-Visual.../modules/ve-mw/test/browser/features/cursor.feature
Željko Filipin 1236387abd [browser test] Run all Selenium tests in Firefox
Paired with: Chris McMahon
Bug: 58040

Change-Id: I83d4c391fc101bda8c18a6d0c533ca75795569ff
2014-04-18 17:33:12 +02:00

36 lines
1.5 KiB
Gherkin

@firefox @login
Feature: VisualEditor cursor
Background:
Given I am logged in
And I am at the cursor test page
And I click Edit for VisualEditor
Scenario Outline: show hover icons
When I send right arrow times <arrow_just_before>
And I do not see the <not_on_page> hover icon
And I send right arrow times 1
Then I should see the <visible> hover icon
And I do not see the <first_wrong> hover icon
And I do not see the <second_wrong> hover icon
And I send right arrow times 1
And I do not see the <again_not_on_page> hover icon
Examples:
| arrow_just_before | not_on_page | visible | first_wrong | second_wrong | again_not_on_page |
| 14 | References | References | Transclusion | Link | References |
| 42 | Transclusion | Transclusion | References | Link | Transclusion |
| 73 | Transclusion | Transclusion | References | Link | Transclusion |
# The last line of this scenario is different from the Outline above.
# Links text should be navigable and show the hover icon
Scenario: Cursor over link shows link icons
When I send right arrow times 74
And I do not see the Link hover icon
And I send right arrow times 1
Then I should see the Link hover icon
And I do not see the References hover icon
And I do not see the Transclusion hover icon
And I send right arrow times 1
And I should see the Link hover icon