selenium-webdriver 3.142.1 → 3.142.2

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
  SHA1:
3
- metadata.gz: 2c657055dd2ca16d14d6b0623dd69ee7de563b3b
4
- data.tar.gz: 440612d6a75c57b84e00b8665ca95be9fbbd1df1
3
+ metadata.gz: 59326754a9ae3f92a632b93b2c55a85567a5e1c6
4
+ data.tar.gz: 544ab60eef8205b5db5d35d89aa5a44c430d908e
5
5
  SHA512:
6
- metadata.gz: 0fb071b1de096c35e05363ee76f2732a4a8b6101b5442da8ef511e21d59b8025429661314ceec35348604dc703451b5b2ce191aac1612e07cede6fe739ef4b85
7
- data.tar.gz: f321a58fb2e9de33d686a3bfd8acb3b9f9c4e96741380cd9114d9070971b6c59ce098cc551bb3ec757283dfbf3f36d3cfbd94ae547a484abf183aae390543bcd
6
+ metadata.gz: 80dc6e2ad10a7f5c38cd77c1097b63ea82a66e003acc535f751f3dc542231f4eee0a144ce08fc33b487639fc05fc7cf5ec9edfbfe45e62ab588bc0e7684a188d
7
+ data.tar.gz: 3528f7acab90183f9651d18a99fba645a23f3cca3d32627f322d24ea5d9959d047cf6bab8094a5da076eec1f3b2052f653a1f7950c679dedca0270669e40fc54
data/CHANGES CHANGED
@@ -1,3 +1,14 @@
1
+ 3.142.2 (2019-05-11)
2
+ ====================
3
+
4
+ Chrome:
5
+ * Fixed an issue when getting/setting network conditions and sending CDP
6
+ commands didn't work with Grid (issue #7174)
7
+
8
+ Safari:
9
+ * Fixed an issue when getting/setting permissions and attaching debugger
10
+ didn't work with Grid (issue #7174)
11
+
1
12
  3.142.1 (2019-05-07)
2
13
  ====================
3
14
 
@@ -23,9 +23,9 @@ module Selenium
23
23
  module Bridge
24
24
 
25
25
  COMMANDS = {
26
- get_network_conditions: [:get, '/session/:session_id/chromium/network_conditions'],
27
- set_network_conditions: [:post, '/session/:session_id/chromium/network_conditions'],
28
- send_command: [:post, '/session/:session_id/goog/cdp/execute']
26
+ get_network_conditions: [:get, 'session/:session_id/chromium/network_conditions'],
27
+ set_network_conditions: [:post, 'session/:session_id/chromium/network_conditions'],
28
+ send_command: [:post, 'session/:session_id/goog/cdp/execute']
29
29
  }.freeze
30
30
 
31
31
  def commands(command)
@@ -24,9 +24,9 @@ module Selenium
24
24
 
25
25
  # https://developer.apple.com/library/content/documentation/NetworkingInternetWeb/Conceptual/WebDriverEndpointDoc/Commands/Commands.html
26
26
  COMMANDS = {
27
- get_permissions: [:get, '/session/:session_id/apple/permissions'],
28
- set_permissions: [:post, '/session/:session_id/apple/permissions'],
29
- attach_debugger: [:post, '/session/:session_id/apple/attach_debugger']
27
+ get_permissions: [:get, 'session/:session_id/apple/permissions'],
28
+ set_permissions: [:post, 'session/:session_id/apple/permissions'],
29
+ attach_debugger: [:post, 'session/:session_id/apple/attach_debugger']
30
30
  }.freeze
31
31
 
32
32
  def commands(command)
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Selenium
21
21
  module WebDriver
22
- VERSION = '3.142.1'
22
+ VERSION = '3.142.2'
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: 3.142.1
4
+ version: 3.142.2
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: 2019-05-07 00:00:00.000000000 Z
13
+ date: 2019-05-11 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  requirement: !ruby/object:Gem::Requirement