Files
mediawiki-extensions-Univer…/tests/browser/features/ime.feature
Zeljko Filipin c56f2a3e49 Make ULS+commons Jenkins job green
Run only tests that pass. Workaround for hook that executes twice and
causes tests to fail.

Job URL:
https://wmf.ci.cloudbees.com/view/r-uls/job/UniversalLanguageSelector-co
mmons.wikimedia.beta.wmflabs.org-linux-firefox/

Change-Id: I43161b66b07880c54baa1c5748c96176b41c1daa
2013-10-23 14:44:45 +00:00

80 lines
2.6 KiB
Gherkin

Feature: Input method engine
User is able to select among different input methods via a menu which is
activated by the input method indicator. User can type with selected input
method in different input fields and temporarily activate and deactivate the
input method.
Scenario: Input method indicator is shown
The input method indicator is shown when input field gets a focus.
Given I am at random page
When I click on an input box
Then I should see the input method indicator
Scenario: Input method menu
Input method menu is shown when user clicks the input method indicator.
Given I am at random page
When I click on an input box
And I click on the input method indicator
Then I should see input methods for English
And I should see a list of available input methods
And I should see a list of suggested languages
Scenario: Unsupported input language
User visits a wiki with content language that does not have have an input
method.
Given I am on a wiki in Kotava language
When I open the input method menu
Then I should see input methods for Kotava
Scenario: Sticky input methods
Chosen input method selection persists across page loads.
Given I am at random page
When I open the input method menu
And I choose ml as the input language
And I open the input method menu
And I click on the Malayalam InScript 2 menu item
And I press Control-M
And I go to another random page
And I click on an input box
And I press Control-M
Then I should see the input method indicator
And in it there must be an element with Malayalam text
@login @reset-preferences-after
Scenario: Input method menu is not offscreen
Input method indicator is not offscreen for English and RTL languages.
Given I am logged in
Given I set "English" as the interface language
When I visit page in Vector skin
And I open the input method menu
Then I should see the input method menu is not offscreen
Given I am logged in
Given I set "Hebrew" as the interface language
When I visit page in Monobook skin
And I open the input method menu
Then I should see the input method menu is not offscreen
Given I am logged in
Given I set "English" as the interface language
When I visit page in Monobook skin
And I open the input method menu
Then I should see the input method menu is not offscreen
Given I am logged in
Given I set "Hebrew" as the interface language
When I visit page in Vector skin
And I open the input method menu
Then I should see the input method menu is not offscreen