selenium-webdriver 2.49.0 → 2.50.0

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/CHANGES CHANGED
@@ -1,4 +1,10 @@
1
- 2.49.1 (UNRELEASED)
1
+ 2.50.0 (2016-1-27)
2
+ ===================
3
+
4
+ Firefox:
5
+ * Fix bug for locating binary in local path (issue 1523, thanks Gopal Patel)
6
+
7
+ 2.49.0 (2016-1-13)
2
8
  ===================
3
9
 
4
10
  Ruby:
@@ -170,7 +170,7 @@ module Selenium
170
170
 
171
171
  def macosx_path
172
172
  path = "/Applications/Firefox.app/Contents/MacOS/firefox-bin"
173
- path = "~/Applications/Firefox.app/Contents/MacOS/firefox-bin" unless File.exist?(path)
173
+ path = File.expand_path("~/Applications/Firefox.app/Contents/MacOS/firefox-bin") unless File.exist?(path)
174
174
  path = Platform.find_binary("firefox-bin") unless File.exist?(path)
175
175
 
176
176
  path
@@ -57,6 +57,7 @@
57
57
  },
58
58
  "mutable": {
59
59
  "browser.dom.window.dump.enabled": true,
60
+ "browser.laterrun.enabled": false,
60
61
  "browser.newtab.url": "about:blank",
61
62
  "browser.newtabpage.enabled": false,
62
63
  "browser.startup.page": 0,
@@ -7,7 +7,7 @@ end
7
7
 
8
8
  Gem::Specification.new do |s|
9
9
  s.name = "selenium-webdriver"
10
- s.version = "2.49.0"
10
+ s.version = "2.50.0"
11
11
 
12
12
  s.authors = ["Jari Bakken"]
13
13
  s.email = "jari.bakken@gmail.com"
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: selenium-webdriver
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 2.49.0
5
+ version: 2.50.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Jari Bakken
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2016-01-13 00:00:00 -06:00
13
+ date: 2016-01-27 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency