How to use read_model_prefs method of Selenium.WebDriver.Firefox Package

Best Selenium code snippet using Selenium.WebDriver.Firefox.read_model_prefs

profile.rb

Source:profile.rb Github

copy

Full Screen

...39 # driver = Selenium::WebDriver.for :firefox, :profile => profile40 #41 def initialize(model = nil)42 @model = verify_model(model)43 model_prefs = read_model_prefs44 if model_prefs.empty?45 @native_events = DEFAULT_ENABLE_NATIVE_EVENTS46 @secure_ssl = DEFAULT_SECURE_SSL47 @untrusted_issuer = DEFAULT_ASSUME_UNTRUSTED_ISSUER48 @load_no_focus_lib = DEFAULT_LOAD_NO_FOCUS_LIB49 @additional_prefs = {}50 else51 # TODO: clean this up52 @native_events = model_prefs.delete(WEBDRIVER_PREFS[:native_events]) == "true"53 @secure_ssl = model_prefs.delete(WEBDRIVER_PREFS[:untrusted_certs]) != "true"54 @untrusted_issuer = model_prefs.delete(WEBDRIVER_PREFS[:untrusted_issuer]) == "true"55 @load_no_focus_lib = model_prefs.delete(WEBDRIVER_PREFS[:load_no_focus_lib]) == "true" # not stored in profile atm, so will always be false.56 @additional_prefs = model_prefs57 end58 @extensions = {}59 end60 def layout_on_disk61 profile_dir = @model ? create_tmp_copy(@model) : Dir.mktmpdir("webdriver-profile")62 FileReaper << profile_dir63 install_extensions(profile_dir)64 delete_lock_files(profile_dir)65 delete_extensions_cache(profile_dir)66 update_user_prefs_in(profile_dir)67 profile_dir68 end69 #70 # Set a preference for this particular profile.71 #72 # @see http://kb.mozillazine.org/About:config_entries73 # @see http://preferential.mozdev.org/preferences.html74 #75 def []=(key, value)76 unless VALID_PREFERENCE_TYPES.any? { |e| value.kind_of? e }77 raise TypeError, "expected one of #{VALID_PREFERENCE_TYPES.inspect}, got #{value.inspect}:#{value.class}"78 end79 if value.kind_of?(String) && Util.stringified?(value)80 raise ArgumentError, "preference values must be plain strings: #{key.inspect} => #{value.inspect}"81 end82 @additional_prefs[key.to_s] = value83 end84 def port=(port)85 self[WEBDRIVER_PREFS[:port]] = port86 end87 def log_file=(file)88 @log_file = file89 self[WEBDRIVER_PREFS[:log_file]] = file90 end91 def add_webdriver_extension92 unless @extensions.has_key?(:webdriver)93 add_extension(WEBDRIVER_EXTENSION_PATH, :webdriver)94 end95 end96 #97 # Add the extension (directory, .zip or .xpi) at the given path to the profile.98 #99 def add_extension(path, name = extension_name_for(path))100 @extensions[name] = Extension.new(path)101 end102 def native_events?103 @native_events == true104 end105 def load_no_focus_lib?106 @load_no_focus_lib == true107 end108 def secure_ssl?109 @secure_ssl == true110 end111 def assume_untrusted_certificate_issuer?112 @untrusted_issuer == true113 end114 def assume_untrusted_certificate_issuer=(bool)115 @untrusted_issuer = bool116 end117 def proxy=(proxy)118 unless proxy.kind_of? Proxy119 raise TypeError, "expected #{Proxy.name}, got #{proxy.inspect}:#{proxy.class}"120 end121 case proxy.type122 when :manual123 self['network.proxy.type'] = 1124 set_manual_proxy_preference "ftp", proxy.ftp125 set_manual_proxy_preference "http", proxy.http126 set_manual_proxy_preference "ssl", proxy.ssl127 if proxy.no_proxy128 self["network.proxy.no_proxies_on"] = proxy.no_proxy129 else130 self["network.proxy.no_proxies_on"] = ""131 end132 when :pac133 self['network.proxy.type'] = 2134 self['network.proxy.autoconfig_url'] = proxy.pac135 when :auto_detect136 self['network.proxy.type'] = 4137 else138 raise ArgumentError, "unsupported proxy type #{proxy.type}"139 end140 proxy141 end142 private143 def set_manual_proxy_preference(key, value)144 return unless value145 host, port = value.to_s.split(":", 2)146 self["network.proxy.#{key}"] = host147 self["network.proxy.#{key}_port"] = Integer(port) if port148 end149 def install_extensions(directory)150 destination = File.join(directory, "extensions")151 @extensions.each do |name, extension|152 p :extension => name if $DEBUG153 extension.write_to(destination)154 end155 end156 def read_model_prefs157 return {} unless @model158 read_user_prefs(File.join(@model, 'user.js'))159 end160 def delete_extensions_cache(directory)161 FileUtils.rm_f File.join(directory, "extensions.cache")162 end163 def delete_lock_files(directory)164 %w[.parentlock parent.lock].each do |name|165 FileUtils.rm_f File.join(directory, name)166 end167 end168 def extension_name_for(path)169 File.basename(path, File.extname(path))170 end...

Full Screen

Full Screen

read_model_prefs

Using AI Code Generation

copy

Full Screen

1driver.find_element(:name, 'q').send_keys "Hello WebDriver!"2driver.find_element(:name, 'btnG').click3driver.find_element(:name, 'q').send_keys "Hello WebDriver!"4driver.find_element(:name, 'btnG').click5driver.find_element(:name, 'q').send_keys "Hello WebDriver!"6driver.find_element(:name, 'btnG').click7profile.set_preference("browser.startup.homepage", "http://www.google.com")8profile.set_preference("startup.homepage_welcome_url", "http://www.google.com")9driver.find_element(:name, 'q').send_keys "Hello WebDriver!"10driver.find_element(:name, 'btnG').click11profile.set_preference("browser.startup.homepage", "http://www.google

Full Screen

Full Screen

read_model_prefs

Using AI Code Generation

copy

Full Screen

1profile = Selenium::WebDriver::Firefox::Profile.from_name("default")2puts profile.instance_variable_get(:@model).to_yaml3puts profile.instance_variable_get(:@model).to_yaml4profile = Selenium::WebDriver::Firefox::Profile.from_name("default")5puts profile.instance_variable_get(:@model).to_yaml6puts profile.instance_variable_get(:@model).to_yaml7profile = Selenium::WebDriver::Firefox::Profile.from_name("default")8puts profile.instance_variable_get(:@model).to_yaml9puts profile.instance_variable_get(:@model).to_yaml10profile = Selenium::WebDriver::Firefox::Profile.from_name("default")11puts profile.instance_variable_get(:@model).to_yaml

Full Screen

Full Screen

read_model_prefs

Using AI Code Generation

copy

Full Screen

1File.open(prefs_file, 'r') do |f|2File.open(prefs_file, 'r') do |f|3File.open(prefs_file, 'r') do |f|4File.open(prefs_file, 'r') do |f|

Full Screen

Full Screen

read_model_prefs

Using AI Code Generation

copy

Full Screen

1profile = Selenium::WebDriver::Firefox::Profile.from_name("default")2puts profile.instance_variable_get(:@model).to_yaml3puts profile.instance_variable_get(:@model).to_yaml4profile = Selenium::WebDriver::Firefox::Profile.from_name("default")5puts profile.instance_variable_get(:@model).to_yaml6puts profile.instance_variable_get(:@model).to_yaml7profile = Selenium::WebDriver::Firefox::Profile.from_name("default")8puts profile.instance_variable_get(:@model).to_yaml9puts profile.instance_variable_get(:@model).to_yaml10profile = Selenium::WebDriver::Firefox::Profile.from_name("default")11puts profile.instance_variable_get(:@model).to_yaml

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful