Running tests at language-browsertests.wmflabs.org

This will revert: https://gerrit.wikimedia.org/r/#/c/114457/

Change-Id: I53d7adc685820d421d774c196642bddc9e5f19b0
This commit is contained in:
Zeljko Filipin
2014-02-21 13:48:06 +01:00
committed by Zfilipin
parent cf143e89a6
commit 30368d121e
4 changed files with 9 additions and 4 deletions

View File

@@ -60,7 +60,12 @@ end
Then(/^in it there must be an element with Malayalam text$/) do
# 'input_method_enabled' alone only returns []
on(IMEPage).input_method_enabled_element.text.should == "ഇൻസ്ക്രിപ്റ്റ് 2"
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|