module Selenium::WebDriver::Firefox::Marionette::Bridge
Constants
- COMMANDS
Public Instance Methods
commands(command)
click to toggle source
Calls superclass method
# File lib/selenium/webdriver/firefox/marionette/bridge.rb, line 31 def commands(command) COMMANDS[command] || super end
install_addon(path, temporary)
click to toggle source
# File lib/selenium/webdriver/firefox/marionette/bridge.rb, line 35 def install_addon(path, temporary) payload = {path: path} payload[:temporary] = temporary unless temporary.nil? execute :install_addon, {}, payload end
uninstall_addon(id)
click to toggle source
# File lib/selenium/webdriver/firefox/marionette/bridge.rb, line 41 def uninstall_addon(id) execute :uninstall_addon, {}, {id: id} end