Files
mediawiki-extensions-Univer…/tests/browser/features/step_definitions/ime_steps.rb
Željko Filipin 22e8762cec Fixed Style/StringLiterals RuboCop offense
Bug: 117989
Change-Id: I82086ebd56ace9f85c521ef53b67e5e4bae9d607
2015-11-18 12:00:36 +01:00

78 lines
2.3 KiB
Ruby

# encoding: utf-8
Given(/^I am on a wiki in Kotava language$/) do
step 'I am at the main page'
# Fake a Kotava Wiki
browser.execute_script( "mw.config.set( 'wgContentLanguage', 'avk' )" )
end
When(/^I click on an input box$/) do
on(IMEPage).search_input_element.click
end
When(/^I click on the input method indicator$/) do
on(IMEPage).input_method_element.when_present.click
end
When(/^I open the input method menu$/) do
step 'I click on an input box'
on(IMEPage).input_method_element.when_present.click
end
Then(/^I should see the input method indicator$/) do
on(IMEPage).input_method_element.when_present.should be_visible
end
Then(/^I should see input methods for (.+)/) do |language|
on(IMEPage).input_method_ime_list_title.should == language
end
Then(/^I should see a list of available input methods$/) do
on(IMEPage).input_method_selector_menu_element.should be_visible
end
Then(/^I should see a list of suggested languages$/) do
on(IMEPage).input_method_language_list_element.should be_visible
end
When(/^I choose (.+?) as the input language$/) do |language|
on(IMEPage) do |page|
page.more_languages
page.language_filter = language
# firefox only works with :return
# phantomjs only works with :enter
# This seems to work on both
page.language_filter_element.send_keys "\n"
end
end
When(/^I click on the Malayalam InScript 2 menu item$/) do
on(IMEPage).malayalam_inscript2_element.click
end
When(/^I press Control-M$/) do
on(IMEPage).search_input_element.send_keys [:control, 'm']
end
When(/^I reload the page$/) do
browser.refresh
end
Then(/^in it there must be an element with Malayalam text$/) do
# 'input_method_enabled' alone only returns []
on(IMEPage) do |page|
page.wait_until do
page.input_method_enabled_element.text != ''
end
page.input_method_enabled_element.text.should == 'ഇൻസ്ക്രിപ്റ്റ് 2'
end
end
Given(/^I visit a random page with (.+) skin and (.+) as the interface language$/) do |skin, language|
visit(IMEPage, :using_params => {:extra => "useskin=#{skin.downcase}&uselang=#{on(IMEPage).language_to_code(language)}"})
end
Then(/^I should see the input method menu is not offscreen$/) do
on(IMEPage).ime_input_method_menu_onscreen?.should == true
end