Module: Selenium::WebDriver::DriverExtensions::HasLocation Private

Defined in:
lib/selenium/webdriver/common/driver_extensions/has_location.rb

This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Instance Method Details

#locationObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



6
7
8
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 6

def location
  @bridge.getLocation
end

#location=(loc) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



10
11
12
13
14
15
16
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 10

def location=(loc)
  unless loc.kind_of?(Location)
    raise TypeError, "expected #{Location}, got #{loc.inspect}:#{loc.class}"
  end

  @bridge.setLocation loc.latitude, loc.longitude, loc.altitude
end

#set_location(lat, lon, alt) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



18
19
20
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 18

def set_location(lat, lon, alt)
  self.location = Location.new(Float(lat), Float(lon), Float(alt))
end