selenium-webdriver 3.142.1 → 3.142.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/CHANGES +11 -0
- data/lib/selenium/webdriver/chrome/bridge.rb +3 -3
- data/lib/selenium/webdriver/safari/bridge.rb +3 -3
- data/lib/selenium/webdriver/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59326754a9ae3f92a632b93b2c55a85567a5e1c6
|
|
4
|
+
data.tar.gz: 544ab60eef8205b5db5d35d89aa5a44c430d908e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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, '
|
|
27
|
-
set_network_conditions: [:post, '
|
|
28
|
-
send_command: [:post, '
|
|
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, '
|
|
28
|
-
set_permissions: [:post, '
|
|
29
|
-
attach_debugger: [:post, '
|
|
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)
|
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.
|
|
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-
|
|
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
|