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
- #location ⇒ Object private
- #location=(loc) ⇒ Object private
- #set_location(lat, lon, alt) ⇒ Object private
Instance Method Details
#location ⇒ 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.
22 23 24 |
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 22 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.
26 27 28 29 30 31 32 |
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 26 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.
34 35 36 |
# File 'lib/selenium/webdriver/common/driver_extensions/has_location.rb', line 34 def set_location(lat, lon, alt) self.location = Location.new(Float(lat), Float(lon), Float(alt)) end |