selenium-webdriver 2.53.1 → 2.53.2
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES
CHANGED
@@ -168,7 +168,9 @@ module Selenium
|
|
168
168
|
|
169
169
|
binary_names.each do |binary_name|
|
170
170
|
paths.each do |path|
|
171
|
-
|
171
|
+
full_path = File.join(path, binary_name)
|
172
|
+
full_path.tr!('\\', '/') if windows?
|
173
|
+
exe = Dir.glob(full_path).first
|
172
174
|
next unless exe
|
173
175
|
return exe if File.executable?(exe)
|
174
176
|
end
|
Binary file
|
data/selenium-webdriver.gemspec
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: selenium-webdriver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 2.53.
|
5
|
+
version: 2.53.2
|
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-06-
|
13
|
+
date: 2016-06-13 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|