module Selenium::WebDriver::DriverExtensions::HasNetworkConnection

Public Instance Methods

network_connection_type() click to toggle source
# 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=(*) click to toggle source
# 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