module Selenium::WebDriver::Chrome::Bridge
Constants
- COMMANDS
Public Instance Methods
commands(command)
click to toggle source
Calls superclass method
# File lib/selenium/webdriver/chrome/bridge.rb, line 29 def commands(command) COMMANDS[command] || super end
network_conditions()
click to toggle source
# File lib/selenium/webdriver/chrome/bridge.rb, line 33 def network_conditions execute :get_network_conditions end
network_conditions=(conditions)
click to toggle source
# File lib/selenium/webdriver/chrome/bridge.rb, line 41 def network_conditions=(conditions) execute :set_network_conditions, {}, {network_conditions: conditions} end
send_command(command_params)
click to toggle source
# File lib/selenium/webdriver/chrome/bridge.rb, line 37 def send_command(command_params) execute :send_command, {}, command_params end