Method: Selenium::WebDriver::DriverExtensions::HasNetworkConditions#network_conditions=
- Defined in:
- lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb
#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
45 46 47 48 49 50 51 52 53 54 |
# File 'lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb', line 45 def network_conditions=(conditions) conditions[:latency] ||= 0 unless conditions.key?(:throughput) conditions[:download_throughput] ||= -1 conditions[:upload_throughput] ||= -1 end conditions[:offline] = false unless conditions.key?(:offline) @bridge.network_conditions = conditions end |