Merge "Updated: Integration tests for off-screen IME selector"

This commit is contained in:
jenkins-bot
2013-09-17 06:57:21 +00:00
committed by Gerrit Code Review
3 changed files with 2 additions and 22 deletions

View File

@@ -72,13 +72,11 @@ Then(/^in it there must be an element with Malayalam text$/) do
end
When(/^I visit page in Vector skin$/) do
sleep 1.0;
visit(AsciiVector)
visit(ULSPage, :using_params => {:extra => "useskin=vector"})
end
When(/^I visit page in Monobook skin$/) do
sleep 1.0;
visit(AsciiMono)
visit(ULSPage, :using_params => {:extra => "useskin=monobook"})
end
Then(/^I should see the input method menu is not offscreen$/) do

View File

@@ -1,9 +0,0 @@
class AsciiMono
include PageObject
include URL
def self.url
URL.url('ASCII?useskin=monobook')
end
page_url url
end

View File

@@ -1,9 +0,0 @@
class AsciiVector
include PageObject
include URL
def self.url
URL.url('ASCII?useskin=vector')
end
page_url url
end