webdrivers 4.1.1 → 4.1.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -2
- data/README.md +2 -4
- data/lib/webdrivers/chrome_finder.rb +6 -0
- data/lib/webdrivers/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7cd7ebf2f29727575042cf40f562078368874a966f32185894fccc870846eae4
|
|
4
|
+
data.tar.gz: b11fabe9de1ba71cf72eac2cd3144a2564aa898a730a44a75195b380ee87d2d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edd6426c60e37b35655b9170321bd7c66d5fb1992ce1f2e9038a7fb75793b4d2270792c876b7a165ce7411330ddc35b63c33e274a9a836e1e4d073c4bf80887d
|
|
7
|
+
data.tar.gz: 356ec146930fcd79c1ad9a8b6fe9c0d0f78552a5ad90d07809723e4c9c3ce1b3328824e8583e8cae732b3a1c47c3e08697a72af707ab09fbb0f88ed926f669d1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
### 4.1.2 (2019-07-29)
|
|
2
|
+
* Fix a bug related to raising `BrowserNotFound`.
|
|
3
|
+
|
|
1
4
|
### 4.1.1 (2019-07-18)
|
|
2
5
|
* Raise `BrowserNotFound` if Chrome and Edge binary are not found (issue [#144](https://github.com/titusfortner/webdrivers/issues/144)).
|
|
3
6
|
|
|
@@ -9,10 +12,10 @@ and [#93](https://github.com/titusfortner/webdrivers/issues/93))
|
|
|
9
12
|
* Fix a bug where the user given Chrome binary path via `Selenium::WebDriver::Chrome.path`
|
|
10
13
|
was not properly escaped (issue [#139](https://github.com/titusfortner/webdrivers/issues/139))
|
|
11
14
|
* Fix miscellaneous code warnings.
|
|
12
|
-
*
|
|
15
|
+
* ~~**Announcement**: As of 06/21/2019, `heroku-buildpack-google-chrome`
|
|
13
16
|
no longer requires a [workaround](https://github.com/titusfortner/webdrivers/wiki/Heroku-buildpack-google-chrome)
|
|
14
17
|
to work with this gem. See [heroku-buildpack-google-chrome#73](https://github.com/heroku/heroku-buildpack-google-chrome/pull/73)
|
|
15
|
-
for more information
|
|
18
|
+
for more information.~~
|
|
16
19
|
|
|
17
20
|
### 4.0.1 (2019-06-12)
|
|
18
21
|
* Cache time now defaults to 86,400 Seconds (24 hours). Please note the special exception for `chromedriver` in the [README](https://github.com/titusfortner/webdrivers#special-exception-for-chromedriver-and-msedgedriver) (issue [#132](https://github.com/titusfortner/webdrivers/issues/132))
|
data/README.md
CHANGED
|
@@ -217,11 +217,9 @@ variable.
|
|
|
217
217
|
This is also required if Google Chrome is not installed in its
|
|
218
218
|
[default location](https://github.com/SeleniumHQ/selenium/wiki/ChromeDriver).
|
|
219
219
|
|
|
220
|
-
#####
|
|
220
|
+
##### Heroku Users
|
|
221
221
|
|
|
222
|
-
Follow the specific instructions [here](https://github.com/titusfortner/webdrivers/wiki/Heroku-buildpack-google-chrome) if
|
|
223
|
-
|
|
224
|
-
Please note that as of 06/21/2019, [`heroku-buildpack-google-chrome`](https://github.com/heroku/heroku-buildpack-google-chrome/pull/73) no longer requires this workaround.
|
|
222
|
+
Follow the specific instructions [here](https://github.com/titusfortner/webdrivers/wiki/Heroku-buildpack-google-chrome) if you're using `heroku-buildpack-google-chrome`.
|
|
225
223
|
|
|
226
224
|
#### Microsoft Edge (Chromium)
|
|
227
225
|
|
|
@@ -46,6 +46,8 @@ module Webdrivers
|
|
|
46
46
|
return option if File.exist?(option)
|
|
47
47
|
end
|
|
48
48
|
end
|
|
49
|
+
|
|
50
|
+
nil
|
|
49
51
|
end
|
|
50
52
|
|
|
51
53
|
def mac_location
|
|
@@ -59,6 +61,8 @@ module Webdrivers
|
|
|
59
61
|
return option if File.exist?(option)
|
|
60
62
|
end
|
|
61
63
|
end
|
|
64
|
+
|
|
65
|
+
nil
|
|
62
66
|
end
|
|
63
67
|
|
|
64
68
|
def linux_location
|
|
@@ -71,6 +75,8 @@ module Webdrivers
|
|
|
71
75
|
return option if File.exist?(option)
|
|
72
76
|
end
|
|
73
77
|
end
|
|
78
|
+
|
|
79
|
+
nil
|
|
74
80
|
end
|
|
75
81
|
|
|
76
82
|
def win_version(location)
|
data/lib/webdrivers/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webdrivers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Titus Fortner
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2019-07-
|
|
13
|
+
date: 2019-07-29 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ffi
|