Class: Selenium::WebDriver::Firefox::Profile

Inherits:
Object
  • Object
show all
Includes:
ProfileHelper
Defined in:
lib/selenium/webdriver/firefox/profile.rb

Constant Summary collapse

VALID_PREFERENCE_TYPES =
[TrueClass, FalseClass, Integer, Float, String].freeze
DEFAULT_PREFERENCES =
{
  'browser.newtabpage.enabled' => false,
  'browser.startup.homepage' => 'about:blank',
  'browser.usedOnWindows10.introURL' => 'about:blank',
  'network.captive-portal-service.enabled' => false,
  'security.csp.enable' => false
}.freeze
LOCK_FILES =
%w[.parentlock parent.lock lock].freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ProfileHelper

#encoded, included, #to_json

Constructor Details

#initialize(model = nil) ⇒ Profile

Create a new Profile instance

Examples:

User configured profile


profile = Selenium::WebDriver::Firefox::Profile.new
profile['network.proxy.http'] = 'localhost'
profile['network.proxy.http_port'] = 9090

driver = Selenium::WebDriver.for :firefox, :profile => profile


70
71
72
73
74
75
# File 'lib/selenium/webdriver/firefox/profile.rb', line 70

def initialize(model = nil)
  @model = verify_model(model)

  @additional_prefs = read_model_prefs
  @extensions = {}
end

Instance Attribute Details

#load_no_focus_lib=(value) ⇒ Object (writeonly)

Sets the attribute load_no_focus_lib

Parameters:

  • value

    the value to set the attribute load_no_focus_lib to.



39
40
41
# File 'lib/selenium/webdriver/firefox/profile.rb', line 39

def load_no_focus_lib=(value)
  @load_no_focus_lib = value
end

#log_fileObject

Returns the value of attribute log_file.



38
39
40
# File 'lib/selenium/webdriver/firefox/profile.rb', line 38

def log_file
  @log_file
end

#nameObject (readonly)

Returns the value of attribute name.



38
39
40
# File 'lib/selenium/webdriver/firefox/profile.rb', line 38

def name
  @name
end

#secure_ssl=(value) ⇒ Object (writeonly)

Sets the attribute secure_ssl

Parameters:

  • value

    the value to set the attribute secure_ssl to.



39
40
41
# File 'lib/selenium/webdriver/firefox/profile.rb', line 39

def secure_ssl=(value)
  @secure_ssl = value
end

Class Method Details

.decoded(json) ⇒ Object



53
54
55
# File 'lib/selenium/webdriver/firefox/profile.rb', line 53

def decoded(json)
  JSON.parse(json)
end

.from_name(name) ⇒ Object



46
47
48
49
50
51
# File 'lib/selenium/webdriver/firefox/profile.rb', line 46

def from_name(name)
  profile = ini[name]
  return profile if profile

  raise Error::WebDriverError, "unable to find profile named: #{name.inspect}"
end

.iniObject



42
43
44
# File 'lib/selenium/webdriver/firefox/profile.rb', line 42

def ini
  @ini ||= ProfilesIni.new
end

Instance Method Details

#[]=(key, value) ⇒ Object

Set a preference for this particular profile.



96
97
98
99
100
101
102
103
104
105
106
# File 'lib/selenium/webdriver/firefox/profile.rb', line 96

def []=(key, value)
  unless VALID_PREFERENCE_TYPES.any? { |e| value.is_a? e }
    raise TypeError, "expected one of #{VALID_PREFERENCE_TYPES.inspect}, got #{value.inspect}:#{value.class}"
  end

  if value.is_a?(String) && Util.stringified?(value)
    raise ArgumentError, "preference values must be plain strings: #{key.inspect} => #{value.inspect}"
  end

  @additional_prefs[key.to_s] = value
end

#add_extension(path, name = extension_name_for(path)) ⇒ Object

Add the extension (directory, .zip or .xpi) at the given path to the profile.



121
122
123
# File 'lib/selenium/webdriver/firefox/profile.rb', line 121

def add_extension(path, name = extension_name_for(path))
  @extensions[name] = Extension.new(path)
end

#layout_on_diskObject



77
78
79
80
81
82
83
84
85
86
87
# File 'lib/selenium/webdriver/firefox/profile.rb', line 77

def layout_on_disk
  profile_dir = @model ? create_tmp_copy(@model) : Dir.mktmpdir('webdriver-profile')
  FileReaper << profile_dir

  install_extensions(profile_dir)
  delete_lock_files(profile_dir)
  delete_extensions_cache(profile_dir)
  update_user_prefs_in(profile_dir)

  profile_dir
end

#port=(port) ⇒ Object



108
109
110
# File 'lib/selenium/webdriver/firefox/profile.rb', line 108

def port=(port)
  self[WEBDRIVER_PREFS[:port]] = port
end

#proxy=(proxy) ⇒ Object

Raises:

  • (TypeError)


125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/selenium/webdriver/firefox/profile.rb', line 125

def proxy=(proxy)
  raise TypeError, "expected #{Proxy.name}, got #{proxy.inspect}:#{proxy.class}" unless proxy.is_a? Proxy

  case proxy.type
  when :manual
    self['network.proxy.type'] = 1

    set_manual_proxy_preference 'ftp', proxy.ftp
    set_manual_proxy_preference 'http', proxy.http
    set_manual_proxy_preference 'ssl', proxy.ssl
    set_manual_proxy_preference 'socks', proxy.socks

    self['network.proxy.no_proxies_on'] = proxy.no_proxy || ''
  when :pac
    self['network.proxy.type'] = 2
    self['network.proxy.autoconfig_url'] = proxy.pac
  when :auto_detect
    self['network.proxy.type'] = 4
  else
    raise ArgumentError, "unsupported proxy type #{proxy.type}"
  end
end