Module: Selenium::WebDriver::DriverExtensions::HasNetworkConditions Private

Included in:
Chrome::Driver
Defined in:
lib/selenium/webdriver/common/driver_extensions/has_network_conditions.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_conditionsHash

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.

Returns network conditions.

Returns:

  • (Hash)


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

def network_conditions
  @bridge.network_conditions
end

#network_conditions=(conditions) ⇒ 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.

Sets network conditions

Parameters:

  • conditions (Hash)

Options Hash (conditions):

  • :latency (Integer)
  • :throughput (Integer)
  • :offline (Boolean)


44
45
46
# File 'lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb', line 44

def network_conditions=(conditions)
  @bridge.network_conditions = conditions
end