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.



24
25
26
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 24

def location
  @bridge.location
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.



28
29
30
31
32
33
34
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 28

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

  @bridge.set_location 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.



36
37
38
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 36

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