selenium-webdriver 4.8.4 → 4.8.5

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: e1128e4a2f56fed80f5f5e2bd1f689e0b0bdd4ef090611290187f1a6fa0f619c
4
- data.tar.gz: 60ddc807a157927e7f32f1706beb2af9ff033f2aab75328d0392ac3f41360268
3
+ metadata.gz: 88a2538aba27631f86ee74a7b8623687a9c78557fcd616bf45bf56def45c5c16
4
+ data.tar.gz: 3c1c76ffa37595bcebb891c00256ca22bd05b15f102b1c09dc252ffdfdc30680
5
5
  SHA512:
6
- metadata.gz: bbc56882d51827104ef8277698a45fc2f43fb57e43a89e6c0f0c2bb0326717232da2227f1f6d1f4e8aaaf067cf09512b27776055ebcb7803b7a1730719799948
7
- data.tar.gz: 68955ece84ef60199cf413e27802d1e2e71780de89acea434944d670b56c8657957d6e6d07d8cc5b6616608ebafd83add73e75a3f6d9236289e3be9be7cefe78
6
+ metadata.gz: 532aab442982dadef146df8e485ac4734ebed84a7a3ae47b34d7311b4f721016af8525c18c0bd706cf46522fd00c68bf3c91fe066832ee7a92a6d87da66d8df9
7
+ data.tar.gz: f8eca6d0ae7ced9a458802d2ce6869b5b92dd73d0b9874cf1bcd9150525984c3bfac1cfabe1bee93bb6da0bd19688583617b52445302831d5f12fbb79c9c699f
data/CHANGES CHANGED
@@ -1,3 +1,9 @@
1
+ 4.8.5 (2023-03-28)
2
+ =========================
3
+ Ruby:
4
+ * Wrapping browser name in quotes when calling Selenium Manager
5
+
6
+
1
7
  4.8.4 (2023-03-28)
2
8
  =========================
3
9
  Ruby:
@@ -28,7 +28,7 @@ module Selenium
28
28
  path ||= begin
29
29
  SeleniumManager.driver_path(options)
30
30
  rescue StandardError => e
31
- WebDriver.logger.debug("Unable obtain driver using Selenium Manager\n #{e.message}")
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
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Selenium
21
21
  module WebDriver
22
- VERSION = '4.8.4'
22
+ VERSION = '4.8.5'
23
23
  end # WebDriver
24
24
  end # Selenium
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
4
+ version: 4.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alex Rodionov