Sha256: 4d5afea2a33a4c68d1d2522c1666f119b1fb3d241722cee5e273015dfc500873
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# Encoding: utf-8 require 'yaml' # selenium connect class SeleniumConnect # Encapsulates the configuration class Configuration # Selenium Server attr_accessor :host, :port, :version, :background, :log, :jar # Browsers attr_accessor :browser, :browser_path, :profile_path, :profile_name # SauceLabs attr_accessor :sauce_username, :sauce_api_key, :os, :browser_version, :description, :api_timeout def initialize(opts = {}) @host = 'localhost' @port = 4444 @browser = 'firefox' populate_with_hash opts unless opts.empty? end def populate_with_hash(hash) hash.each do |key, value| begin self.send "#{key}=", value unless value.nil? rescue NoMethodError raise ArgumentError.new "The config key: \"#{key}\" is unknown!" end end end def populate_with_yaml(file) populate_with_hash YAML.load_file file end alias_method :config_file=, :populate_with_yaml end # Configuration end # SeleniumConnect
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
selenium-connect-3.2.0 | lib/selenium_connect/configuration.rb |