selenium-webdriver 4.8.2 → 4.8.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c644ddbe5035bb314db11fd26ac707eb3f9aab99175a50b78214b1cafa672808
|
4
|
+
data.tar.gz: 3d037d5e8b6c07c61c484cd45e3065e9e755b6331bfadf9980be54c5c87f262e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ed3ac91be70eef9a1e2626ae7d35dece432089a20e3714d79a38c4c1f5944159787f835f42c796df1f528debccd453ec89f8470c655d366b0ca6ea6e9351d11
|
7
|
+
data.tar.gz: a3e49d3f778ec7f26d9d3d5e322cbcf15ada0aa5a2a048efddea90bce06aa1db91996afcb1e077da6bec5d7183c8e61ffa36d785923b3daba518e07eb06052bd
|
data/CHANGES
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
4.8.3 (2023-03-26)
|
2
|
+
=========================
|
3
|
+
Ruby:
|
4
|
+
* Still need to use driver finder when using capabilities parameter
|
5
|
+
* Accommodate Driver Finder being sent something other than an Options instance
|
6
|
+
|
1
7
|
4.8.2 (2023-03-24)
|
2
8
|
=========================
|
3
9
|
Ruby:
|
@@ -42,6 +42,7 @@ module Selenium
|
|
42
42
|
WebDriver.logger.deprecate("The :capabilities parameter for #{self.class}",
|
43
43
|
":options argument with an instance of #{self.class}",
|
44
44
|
id: :capabilities)
|
45
|
+
service.executable_path ||= WebDriver::DriverFinder.path(capabilities, service.class)
|
45
46
|
generate_capabilities(capabilities)
|
46
47
|
else
|
47
48
|
options ||= default_options
|
@@ -33,11 +33,11 @@ module Selenium
|
|
33
33
|
# @param [Options] options browser options.
|
34
34
|
# @return [String] the path to the correct driver.
|
35
35
|
def driver_path(options)
|
36
|
-
message =
|
36
|
+
message = 'applicable driver not found; attempting to install with Selenium Manager'
|
37
37
|
WebDriver.logger.warn(message)
|
38
38
|
|
39
39
|
unless options.is_a?(Options)
|
40
|
-
raise ArgumentError, "SeleniumManager requires a WebDriver::Options instance, not
|
40
|
+
raise ArgumentError, "SeleniumManager requires a WebDriver::Options instance, not #{options.inspect}"
|
41
41
|
end
|
42
42
|
|
43
43
|
command = [binary, '--browser', options.browser_name, '--output', 'json']
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: selenium-webdriver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.8.
|
4
|
+
version: 4.8.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Rodionov
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2023-03-
|
13
|
+
date: 2023-03-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rexml
|