123456789_123456789_123456789_123456789_123456789_

Class: Selenium::WebDriver::IE::Service

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: Selenium::WebDriver::Service
Defined in: rb/lib/selenium/webdriver/ie/service.rb

Constant Summary

Class Attribute Summary

Class Method Summary

::Selenium::WebDriver::Service - Inherited

.chrome, .edge, .firefox, .ie,
.internet_explorer

Alias for Service.ie.

.microsoftedge

Alias for Service.edge.

.msedge

Alias for Service.edge.

.safari,
.new

End users should use a class method for the desired driver, rather than using this directly.

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(args: nil) ⇒ Service

[ GitHub ]

  
# File 'rb/lib/selenium/webdriver/ie/service.rb', line 29

def initialize(args: nil, **)
  if ENV.key?('SE_DEBUG')
    args = Array(args.dup)
    warn_driver_log_override if args.reject! { |arg| arg.include?('log-level') || arg.include?('silent') }
    args << '--log-level=DEBUG'
  end

  super
end