module Empiric::Interface::Page
Public Instance Methods
position(x, y)
click to toggle source
# File lib/empiric/interface.rb, line 8 def position(x, y) browser.window.move_to(x, y) end
Also aliased as: move_to
resize(width, height)
click to toggle source
# File lib/empiric/interface.rb, line 4 def resize(width, height) browser.window.resize_to(width, height) end
Also aliased as: resize_to