class Selenium::WebDriver::Firefox::Driver
Driver implementation for Firefox using GeckoDriver. @api private
Constants
- EXTENSIONS
Public Class Methods
new(options: nil, service: nil, url: nil, **)
click to toggle source
Calls superclass method
Selenium::WebDriver::Driver::new
# File lib/selenium/webdriver/firefox/driver.rb, line 39 def initialize(options: nil, service: nil, url: nil, **) initialize_local_driver(options, service, url) do |caps, driver_url| super(caps: caps, url: driver_url, **) end end
Public Instance Methods
browser()
click to toggle source
# File lib/selenium/webdriver/firefox/driver.rb, line 45 def browser :firefox end