selenium-connect 1.9.1 → 1.9.3
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.
|
@@ -30,7 +30,7 @@ module SeleniumConnect
|
|
|
30
30
|
def config_browser
|
|
31
31
|
profile = get_profile
|
|
32
32
|
profile.assume_untrusted_certificate_issuer = false unless profile.nil?
|
|
33
|
-
profile.log_file = File.join(config.log, 'firefox.log') if config.log
|
|
33
|
+
profile.log_file = File.join(Dir.getwd, config.log, 'firefox.log') if config.log
|
|
34
34
|
browser = Selenium::WebDriver::Remote::Capabilities.firefox
|
|
35
35
|
browser[:firefox_binary] = config.browser_path if config.browser_path
|
|
36
36
|
browser[:firefox_profile] = profile
|
data/selenium-connect.gemspec
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'selenium-connect'
|
|
3
|
-
s.version = '1.9.
|
|
3
|
+
s.version = '1.9.3'
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.authors = ['Dave Haeffner']
|
|
6
6
|
s.email = ['dave@arrgyle.com']
|
|
7
7
|
s.homepage = 'https://github.com/arrgyle/selenium-connect'
|
|
8
8
|
s.summary = 'A stupid simple way to run your Selenium tests on localhost, against a Selenium Grid, or in the cloud (e.g. SauceLabs).'
|
|
9
|
-
s.description = '
|
|
9
|
+
s.description = 'Fixed logging bug.'
|
|
10
10
|
s.license = 'MIT'
|
|
11
11
|
|
|
12
12
|
s.files = `git ls-files`.split($/)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: selenium-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-06-
|
|
12
|
+
date: 2013-06-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: selenium-webdriver
|
|
@@ -75,7 +75,7 @@ dependencies:
|
|
|
75
75
|
- - ! '>='
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
|
-
description:
|
|
78
|
+
description: Fixed logging bug.
|
|
79
79
|
email:
|
|
80
80
|
- dave@arrgyle.com
|
|
81
81
|
executables: []
|