selenium-connect 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/selenium-connect/runner/firefox.rb +4 -1
- data/selenium-connect.gemspec +1 -1
- metadata +1 -1
|
@@ -18,11 +18,14 @@ module SeleniumConnect
|
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
+
def set_path
|
|
22
|
+
end
|
|
23
|
+
|
|
21
24
|
def init_browser
|
|
22
25
|
profile = get_profile
|
|
23
26
|
profile.assume_untrusted_certificate_issuer = false unless profile.nil?
|
|
24
27
|
browser = Selenium::WebDriver::Remote::Capabilities.firefox
|
|
25
|
-
browser[:firefox_binary] if config.browser_path
|
|
28
|
+
browser[:firefox_binary] = config.browser_path if config.browser_path
|
|
26
29
|
browser[:firefox_profile] = profile
|
|
27
30
|
@capabilities = browser
|
|
28
31
|
end
|
data/selenium-connect.gemspec
CHANGED