selenium-webdriver 4.8.4 → 4.8.5
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 88a2538aba27631f86ee74a7b8623687a9c78557fcd616bf45bf56def45c5c16
|
|
4
|
+
data.tar.gz: 3c1c76ffa37595bcebb891c00256ca22bd05b15f102b1c09dc252ffdfdc30680
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 532aab442982dadef146df8e485ac4734ebed84a7a3ae47b34d7311b4f721016af8525c18c0bd706cf46522fd00c68bf3c91fe066832ee7a92a6d87da66d8df9
|
|
7
|
+
data.tar.gz: f8eca6d0ae7ced9a458802d2ce6869b5b92dd73d0b9874cf1bcd9150525984c3bfac1cfabe1bee93bb6da0bd19688583617b52445302831d5f12fbb79c9c699f
|
data/CHANGES
CHANGED
|
@@ -28,7 +28,7 @@ module Selenium
|
|
|
28
28
|
path ||= begin
|
|
29
29
|
SeleniumManager.driver_path(options)
|
|
30
30
|
rescue StandardError => e
|
|
31
|
-
WebDriver.logger.
|
|
31
|
+
WebDriver.logger.warn("Unable obtain driver using Selenium Manager\n #{e.message}")
|
|
32
32
|
nil
|
|
33
33
|
end
|
|
34
34
|
msg = "Unable to locate the #{klass::EXECUTABLE} executable; for more information on how to install drivers, " \
|
|
@@ -40,7 +40,7 @@ module Selenium
|
|
|
40
40
|
raise ArgumentError, "SeleniumManager requires a WebDriver::Options instance, not #{options.inspect}"
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
command = [binary, '--browser', options.browser_name, '--output', 'json']
|
|
43
|
+
command = [binary, '--browser', "'#{options.browser_name}'", '--output', 'json']
|
|
44
44
|
if options.browser_version
|
|
45
45
|
command << '--browser-version'
|
|
46
46
|
command << options.browser_version
|