Module: Selenium::WebDriver::DriverExtensions::HasNetworkConnection Private

Defined in:
lib/selenium/webdriver/common/driver_extensions/has_network_connection.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

#network_connection_typeObject

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.



25
26
27
28
# File 'lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb', line 25

def network_connection_type
  raise Error::UnsupportedOperationError,
        'The W3C standard does not currently support getting network connection'
end

#network_connection_type=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.



30
31
32
33
# File 'lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb', line 30

def network_connection_type=(*)
  raise Error::UnsupportedOperationError,
        'The W3C standard does not currently support setting network connection'
end