selenium-webdriver 4.0.0.beta3 → 4.0.0.rc3
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 +1953 -0
- data/Gemfile +6 -0
- data/LICENSE +202 -0
- data/NOTICE +2 -0
- data/README.md +34 -0
- data/lib/selenium/webdriver/atoms/findElements.js +0 -0
- data/lib/selenium/webdriver/atoms/getAttribute.js +25 -25
- data/lib/selenium/webdriver/atoms/isDisplayed.js +0 -0
- data/lib/selenium/webdriver/chrome/driver.rb +6 -5
- data/lib/selenium/webdriver/chrome/features.rb +44 -4
- data/lib/selenium/webdriver/chrome/options.rb +25 -2
- data/lib/selenium/webdriver/chrome/profile.rb +0 -0
- data/lib/selenium/webdriver/common/driver.rb +5 -1
- data/lib/selenium/webdriver/common/driver_extensions/full_page_screenshot.rb +43 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_apple_permissions.rb +51 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_casting.rb +77 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_cdp.rb +38 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_context.rb +45 -0
- data/lib/selenium/{devtools.rb → webdriver/common/driver_extensions/has_launching.rb} +16 -8
- data/lib/selenium/webdriver/common/driver_extensions/has_log_events.rb +1 -6
- data/lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb +8 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_network_interception.rb +87 -18
- data/lib/selenium/webdriver/common/driver_extensions/has_permissions.rb +11 -11
- data/lib/selenium/webdriver/common/driver_extensions/has_pinned_scripts.rb +77 -0
- data/lib/selenium/webdriver/common/driver_extensions/prints_page.rb +1 -1
- data/lib/selenium/webdriver/common/element.rb +17 -8
- data/lib/selenium/webdriver/common/error.rb +12 -0
- data/lib/selenium/webdriver/common/log_entry.rb +2 -2
- data/lib/selenium/webdriver/common/manager.rb +3 -13
- data/lib/selenium/webdriver/common/options.rb +20 -6
- data/lib/selenium/webdriver/common/proxy.rb +2 -2
- data/lib/selenium/webdriver/common/shadow_root.rb +87 -0
- data/lib/selenium/webdriver/common/takes_screenshot.rb +9 -6
- data/lib/selenium/webdriver/common/target_locator.rb +28 -0
- data/lib/selenium/webdriver/common/timeouts.rb +31 -4
- data/lib/selenium/webdriver/common/window.rb +0 -4
- data/lib/selenium/webdriver/common.rb +8 -0
- data/lib/selenium/webdriver/devtools/pinned_script.rb +59 -0
- data/lib/selenium/webdriver/devtools/request.rb +27 -17
- data/lib/selenium/webdriver/devtools/response.rb +66 -0
- data/lib/selenium/webdriver/devtools.rb +50 -12
- data/lib/selenium/webdriver/edge/features.rb +5 -0
- data/lib/selenium/webdriver/edge/options.rb +0 -0
- data/lib/selenium/webdriver/edge/profile.rb +0 -0
- data/lib/selenium/webdriver/firefox/driver.rb +6 -0
- data/lib/selenium/webdriver/firefox/features.rb +20 -1
- data/lib/selenium/webdriver/firefox/options.rb +24 -1
- data/lib/selenium/webdriver/firefox.rb +0 -1
- data/lib/selenium/webdriver/ie/options.rb +3 -1
- data/lib/selenium/webdriver/ie/service.rb +1 -1
- data/lib/selenium/webdriver/remote/bridge.rb +39 -23
- data/lib/selenium/webdriver/remote/capabilities.rb +4 -13
- data/lib/selenium/webdriver/remote/commands.rb +4 -0
- data/lib/selenium/webdriver/remote/driver.rb +3 -1
- data/lib/selenium/webdriver/remote.rb +1 -1
- data/lib/selenium/webdriver/safari/driver.rb +1 -1
- data/lib/selenium/webdriver/safari/options.rb +7 -0
- data/lib/selenium/webdriver/support/cdp/domain.rb.erb +63 -0
- data/lib/selenium/webdriver/support/cdp_client_generator.rb +108 -0
- data/lib/selenium/webdriver/support/event_firing_bridge.rb +2 -2
- data/lib/selenium/webdriver/version.rb +1 -1
- data/lib/selenium/webdriver.rb +1 -1
- data/selenium-webdriver.gemspec +63 -0
- metadata +60 -44
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Selenium
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module FullPageScreenshot
|
24
|
+
#
|
25
|
+
# Save a PNG screenshot of the full page to the given path
|
26
|
+
#
|
27
|
+
# @api public
|
28
|
+
#
|
29
|
+
|
30
|
+
def save_full_page_screenshot(path)
|
31
|
+
save_screenshot(path, full_page: true)
|
32
|
+
end
|
33
|
+
|
34
|
+
private
|
35
|
+
|
36
|
+
def full_screenshot
|
37
|
+
@bridge.full_screenshot
|
38
|
+
end
|
39
|
+
|
40
|
+
end # FullPageScreenshot
|
41
|
+
end # DriverExtensions
|
42
|
+
end # WebDriver
|
43
|
+
end # Selenium
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Selenium
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module HasApplePermissions
|
24
|
+
|
25
|
+
#
|
26
|
+
# Returns permissions.
|
27
|
+
#
|
28
|
+
# @return [Hash]
|
29
|
+
#
|
30
|
+
|
31
|
+
def permissions
|
32
|
+
@bridge.permissions
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Sets permissions.
|
37
|
+
#
|
38
|
+
# @example
|
39
|
+
# driver.permissions = {'getUserMedia' => true}
|
40
|
+
#
|
41
|
+
# @param [Hash<Symbol, Boolean>] permissions
|
42
|
+
#
|
43
|
+
|
44
|
+
def permissions=(permissions)
|
45
|
+
@bridge.permissions = permissions
|
46
|
+
end
|
47
|
+
|
48
|
+
end # HasPermissions
|
49
|
+
end # DriverExtensions
|
50
|
+
end # WebDriver
|
51
|
+
end # Selenium
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Selenium
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module HasCasting
|
24
|
+
|
25
|
+
#
|
26
|
+
# What devices ("sinks") are available to be cast to.
|
27
|
+
#
|
28
|
+
# @return [Array] list of sinks available for casting with id and name values
|
29
|
+
#
|
30
|
+
|
31
|
+
def cast_sinks
|
32
|
+
@bridge.cast_sinks
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Sets a specific sink, using its name, as a Cast session receiver target.
|
37
|
+
#
|
38
|
+
# @param [String] name the sink to use as the target
|
39
|
+
#
|
40
|
+
|
41
|
+
def cast_sink_to_use=(name)
|
42
|
+
@bridge.cast_sink_to_use = name
|
43
|
+
end
|
44
|
+
|
45
|
+
#
|
46
|
+
# Starts a tab mirroring session on a specific receiver target.
|
47
|
+
#
|
48
|
+
# @param [String] name the sink to use as the target
|
49
|
+
#
|
50
|
+
|
51
|
+
def start_cast_tab_mirroring(name)
|
52
|
+
@bridge.start_cast_tab_mirroring(name)
|
53
|
+
end
|
54
|
+
|
55
|
+
#
|
56
|
+
# Gets error messages when there is any issue in a Cast session.
|
57
|
+
#
|
58
|
+
# @return [String] the error message
|
59
|
+
#
|
60
|
+
|
61
|
+
def cast_issue_message
|
62
|
+
@bridge.cast_issue_message
|
63
|
+
end
|
64
|
+
|
65
|
+
#
|
66
|
+
# Stops the existing Cast session on a specific receiver target.
|
67
|
+
#
|
68
|
+
# @param [String] name the sink to stop the Cast session
|
69
|
+
#
|
70
|
+
|
71
|
+
def stop_casting(name)
|
72
|
+
@bridge.stop_casting(name)
|
73
|
+
end
|
74
|
+
end # HasCasting
|
75
|
+
end # DriverExtensions
|
76
|
+
end # WebDriver
|
77
|
+
end # Selenium
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Selenium
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module HasCDP
|
24
|
+
|
25
|
+
#
|
26
|
+
# Returns network conditions.
|
27
|
+
#
|
28
|
+
# @return [Hash]
|
29
|
+
#
|
30
|
+
|
31
|
+
def execute_cdp(cmd, **params)
|
32
|
+
@bridge.send_command(cmd: cmd, params: params)
|
33
|
+
end
|
34
|
+
|
35
|
+
end # HasCDP
|
36
|
+
end # DriverExtensions
|
37
|
+
end # WebDriver
|
38
|
+
end # Selenium
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Selenium
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module HasContext
|
24
|
+
|
25
|
+
#
|
26
|
+
# Sets the context that Selenium commands are running in using
|
27
|
+
# a `with` statement. The state of the context on the server is
|
28
|
+
# saved before entering the block, and restored upon exiting it.
|
29
|
+
#
|
30
|
+
# @param [String] name which permission to set
|
31
|
+
# @param [String] value what to set the permission to
|
32
|
+
#
|
33
|
+
|
34
|
+
def context=(value)
|
35
|
+
@bridge.context = value
|
36
|
+
end
|
37
|
+
|
38
|
+
def context
|
39
|
+
@bridge.context
|
40
|
+
end
|
41
|
+
|
42
|
+
end # HasContext
|
43
|
+
end # DriverExtensions
|
44
|
+
end # WebDriver
|
45
|
+
end # Selenium
|
@@ -18,13 +18,21 @@
|
|
18
18
|
# under the License.
|
19
19
|
|
20
20
|
module Selenium
|
21
|
-
module
|
22
|
-
|
23
|
-
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module HasLaunching
|
24
24
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
25
|
+
#
|
26
|
+
# Launches Chromium app specified by id.
|
27
|
+
#
|
28
|
+
# @param [String] id
|
29
|
+
#
|
30
|
+
|
31
|
+
def launch_app(id)
|
32
|
+
@bridge.launch_app(id)
|
33
|
+
end
|
34
|
+
|
35
|
+
end # HasLaunching
|
36
|
+
end # DriverExtensions
|
37
|
+
end # WebDriver
|
30
38
|
end # Selenium
|
@@ -112,8 +112,7 @@ module Selenium
|
|
112
112
|
|
113
113
|
devtools.runtime.add_binding(name: '__webdriver_attribute')
|
114
114
|
execute_script(mutation_listener)
|
115
|
-
|
116
|
-
pinned_scripts[mutation_listener] = script['identifier']
|
115
|
+
devtools.page.add_script_to_evaluate_on_new_document(source: mutation_listener)
|
117
116
|
|
118
117
|
devtools.runtime.on(:binding_called, &method(:log_mutation_event))
|
119
118
|
end
|
@@ -139,10 +138,6 @@ module Selenium
|
|
139
138
|
@mutation_listener ||= read_atom(:mutationListener)
|
140
139
|
end
|
141
140
|
|
142
|
-
def pinned_scripts
|
143
|
-
@pinned_scripts ||= {}
|
144
|
-
end
|
145
|
-
|
146
141
|
end # HasLogEvents
|
147
142
|
end # DriverExtensions
|
148
143
|
end # WebDriver
|
@@ -45,6 +45,14 @@ module Selenium
|
|
45
45
|
@bridge.network_conditions = conditions
|
46
46
|
end
|
47
47
|
|
48
|
+
#
|
49
|
+
# Resets Chromium network emulation settings.
|
50
|
+
#
|
51
|
+
|
52
|
+
def delete_network_conditions
|
53
|
+
@bridge.delete_network_conditions
|
54
|
+
end
|
55
|
+
|
48
56
|
end # HasNetworkConditions
|
49
57
|
end # DriverExtensions
|
50
58
|
end # WebDriver
|
@@ -28,39 +28,108 @@ module Selenium
|
|
28
28
|
# a stubbed response instead.
|
29
29
|
#
|
30
30
|
# @example Log requests and pass through
|
31
|
-
# driver.intercept do |request|
|
31
|
+
# driver.intercept do |request, &continue|
|
32
32
|
# puts "#{request.method} #{request.url}"
|
33
|
-
# request
|
33
|
+
# continue.call(request)
|
34
34
|
# end
|
35
35
|
#
|
36
|
-
# @example Stub
|
37
|
-
# driver.intercept do |request|
|
36
|
+
# @example Stub requests for images
|
37
|
+
# driver.intercept do |request, &continue|
|
38
38
|
# if request.url.match?(/\.png$/)
|
39
|
-
# request.
|
40
|
-
# else
|
41
|
-
# request.continue
|
39
|
+
# request.url = 'https://upload.wikimedia.org/wikipedia/commons/d/d5/Selenium_Logo.png'
|
42
40
|
# end
|
41
|
+
# continue.call(request)
|
43
42
|
# end
|
44
43
|
#
|
45
|
-
# @
|
46
|
-
#
|
44
|
+
# @example Log responses and pass through
|
45
|
+
# driver.intercept do |request, &continue|
|
46
|
+
# continue.call(request) do |response|
|
47
|
+
# puts "#{response.code} #{response.body}"
|
48
|
+
# end
|
49
|
+
# end
|
50
|
+
#
|
51
|
+
# @example Mutate specific response
|
52
|
+
# driver.intercept do |request, &continue|
|
53
|
+
# continue.call(request) do |response|
|
54
|
+
# response.body << 'Added by Selenium!' if request.url.include?('/myurl')
|
55
|
+
# end
|
56
|
+
# end
|
57
|
+
#
|
58
|
+
# @param [Proc] block which is called when request is intercepted
|
59
|
+
# @yieldparam [DevTools::Request] request
|
60
|
+
# @yieldparam [Proc] continue block which proceeds with the request and optionally yields response
|
47
61
|
#
|
48
62
|
|
49
|
-
def intercept
|
63
|
+
def intercept(&block)
|
50
64
|
devtools.network.set_cache_disabled(cache_disabled: true)
|
51
65
|
devtools.fetch.on(:request_paused) do |params|
|
52
|
-
|
53
|
-
|
54
|
-
id
|
55
|
-
|
56
|
-
|
57
|
-
|
66
|
+
id = params['requestId']
|
67
|
+
if params.key?('responseStatusCode') || params.key?('responseErrorReason')
|
68
|
+
intercept_response(id, params, &pending_response_requests.delete(id))
|
69
|
+
else
|
70
|
+
intercept_request(id, params, &block)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
devtools.fetch.enable(patterns: [{requestStage: 'Request'}, {requestStage: 'Response'}])
|
74
|
+
end
|
75
|
+
|
76
|
+
private
|
77
|
+
|
78
|
+
def pending_response_requests
|
79
|
+
@pending_response_requests ||= {}
|
80
|
+
end
|
81
|
+
|
82
|
+
def intercept_request(id, params, &block)
|
83
|
+
original = DevTools::Request.from(id, params)
|
84
|
+
mutable = DevTools::Request.from(id, params)
|
85
|
+
|
86
|
+
block.call(mutable) do |&continue| # rubocop:disable Performance/RedundantBlockCall
|
87
|
+
pending_response_requests[id] = continue
|
88
|
+
|
89
|
+
if original == mutable
|
90
|
+
devtools.fetch.continue_request(request_id: id)
|
91
|
+
else
|
92
|
+
devtools.fetch.continue_request(
|
93
|
+
request_id: id,
|
94
|
+
url: mutable.url,
|
95
|
+
method: mutable.method,
|
96
|
+
post_data: mutable.post_data,
|
97
|
+
headers: mutable.headers.map do |k, v|
|
98
|
+
{name: k, value: v}
|
99
|
+
end
|
100
|
+
)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def intercept_response(id, params)
|
106
|
+
return devtools.fetch.continue_request(request_id: id) unless block_given?
|
107
|
+
|
108
|
+
body = fetch_response_body(id)
|
109
|
+
original = DevTools::Response.from(id, body, params)
|
110
|
+
mutable = DevTools::Response.from(id, body, params)
|
111
|
+
yield mutable
|
112
|
+
|
113
|
+
if original == mutable
|
114
|
+
devtools.fetch.continue_request(request_id: id)
|
115
|
+
else
|
116
|
+
devtools.fetch.fulfill_request(
|
117
|
+
request_id: id,
|
118
|
+
body: (Base64.strict_encode64(mutable.body) if mutable.body),
|
119
|
+
response_code: mutable.code,
|
120
|
+
response_headers: mutable.headers.map do |k, v|
|
121
|
+
{name: k, value: v}
|
122
|
+
end
|
58
123
|
)
|
59
|
-
yield request
|
60
124
|
end
|
61
|
-
devtools.fetch.enable
|
62
125
|
end
|
63
126
|
|
127
|
+
def fetch_response_body(id)
|
128
|
+
devtools.fetch.get_response_body(request_id: id).dig('result', 'body')
|
129
|
+
rescue Error::WebDriverError
|
130
|
+
# CDP fails to get body on certain responses (301) and raises:
|
131
|
+
# Can only get response body on requests captured after headers received.
|
132
|
+
end
|
64
133
|
end # HasNetworkInterception
|
65
134
|
end # DriverExtensions
|
66
135
|
end # WebDriver
|
@@ -23,26 +23,26 @@ module Selenium
|
|
23
23
|
module HasPermissions
|
24
24
|
|
25
25
|
#
|
26
|
-
#
|
26
|
+
# Set one permission.
|
27
27
|
#
|
28
|
-
# @
|
28
|
+
# @param [String] name which permission to set
|
29
|
+
# @param [String] value what to set the permission to
|
29
30
|
#
|
30
31
|
|
31
|
-
def
|
32
|
-
@bridge.
|
32
|
+
def add_permission(name, value)
|
33
|
+
@bridge.set_permission(name, value)
|
33
34
|
end
|
34
35
|
|
35
36
|
#
|
36
|
-
#
|
37
|
+
# Set multiple permissions.
|
37
38
|
#
|
38
|
-
# @
|
39
|
-
# driver.permissions = {'getUserMedia' => true}
|
40
|
-
#
|
41
|
-
# @param [Hash<Symbol, Boolean>] permissions
|
39
|
+
# @param [Hash] opt key/value pairs to set permissions
|
42
40
|
#
|
43
41
|
|
44
|
-
def
|
45
|
-
|
42
|
+
def add_permissions(opt)
|
43
|
+
opt.each do |key, value|
|
44
|
+
@bridge.set_permission(key, value)
|
45
|
+
end
|
46
46
|
end
|
47
47
|
|
48
48
|
end # HasPermissions
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Licensed to the Software Freedom Conservancy (SFC) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The SFC licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
|
20
|
+
module Selenium
|
21
|
+
module WebDriver
|
22
|
+
module DriverExtensions
|
23
|
+
module HasPinnedScripts
|
24
|
+
|
25
|
+
#
|
26
|
+
# Returns the list of all pinned scripts.
|
27
|
+
#
|
28
|
+
# @return [Array<DevTools::PinnedScript>]
|
29
|
+
#
|
30
|
+
|
31
|
+
def pinned_scripts
|
32
|
+
@pinned_scripts ||= []
|
33
|
+
end
|
34
|
+
|
35
|
+
#
|
36
|
+
# Pins JavaScript snippet that is available during the whole
|
37
|
+
# session on every page. This allows to store and call
|
38
|
+
# scripts without sending them over the wire every time.
|
39
|
+
#
|
40
|
+
# @example
|
41
|
+
# script = driver.pin_script('return window.location.href')
|
42
|
+
# driver.execute_script(script)
|
43
|
+
# # navigate to a new page
|
44
|
+
# driver.execute_script(script)
|
45
|
+
#
|
46
|
+
# @param [String] script
|
47
|
+
# @return [DevTools::PinnedScript]
|
48
|
+
#
|
49
|
+
|
50
|
+
def pin_script(script)
|
51
|
+
script = DevTools::PinnedScript.new(script)
|
52
|
+
pinned_scripts << script
|
53
|
+
|
54
|
+
devtools.page.enable
|
55
|
+
devtools.runtime.evaluate(expression: script.callable)
|
56
|
+
response = devtools.page.add_script_to_evaluate_on_new_document(source: script.callable)
|
57
|
+
script.devtools_identifier = response.dig('result', 'identifier')
|
58
|
+
|
59
|
+
script
|
60
|
+
end
|
61
|
+
|
62
|
+
#
|
63
|
+
# Unpins script making it undefined for the subsequent calls.
|
64
|
+
#
|
65
|
+
# @param [DevTools::PinnedScript]
|
66
|
+
#
|
67
|
+
|
68
|
+
def unpin_script(script)
|
69
|
+
devtools.runtime.evaluate(expression: script.remove)
|
70
|
+
devtools.page.remove_script_to_evaluate_on_new_document(identifier: script.devtools_identifier)
|
71
|
+
pinned_scripts.delete(script)
|
72
|
+
end
|
73
|
+
|
74
|
+
end # HasPinnedScripts
|
75
|
+
end # DriverExtensions
|
76
|
+
end # WebDriver
|
77
|
+
end # Selenium
|
@@ -143,7 +143,7 @@ module Selenium
|
|
143
143
|
#
|
144
144
|
|
145
145
|
def dom_attribute(name)
|
146
|
-
bridge.element_dom_attribute
|
146
|
+
bridge.element_dom_attribute @id, name
|
147
147
|
end
|
148
148
|
|
149
149
|
#
|
@@ -157,7 +157,7 @@ module Selenium
|
|
157
157
|
#
|
158
158
|
|
159
159
|
def property(name)
|
160
|
-
bridge.element_property
|
160
|
+
bridge.element_property @id, name
|
161
161
|
end
|
162
162
|
|
163
163
|
#
|
@@ -167,7 +167,7 @@ module Selenium
|
|
167
167
|
#
|
168
168
|
|
169
169
|
def aria_role
|
170
|
-
bridge.element_aria_role
|
170
|
+
bridge.element_aria_role @id
|
171
171
|
end
|
172
172
|
|
173
173
|
#
|
@@ -177,7 +177,7 @@ module Selenium
|
|
177
177
|
#
|
178
178
|
|
179
179
|
def accessible_name
|
180
|
-
bridge.element_aria_label
|
180
|
+
bridge.element_aria_label @id
|
181
181
|
end
|
182
182
|
|
183
183
|
#
|
@@ -317,6 +317,16 @@ module Selenium
|
|
317
317
|
bridge.element_size @id
|
318
318
|
end
|
319
319
|
|
320
|
+
#
|
321
|
+
# Returns the shadow root of an element.
|
322
|
+
#
|
323
|
+
# @return [WebDriver::ShadowRoot]
|
324
|
+
#
|
325
|
+
|
326
|
+
def shadow_root
|
327
|
+
bridge.shadow_root @id
|
328
|
+
end
|
329
|
+
|
320
330
|
#-------------------------------- sugar --------------------------------
|
321
331
|
|
322
332
|
#
|
@@ -336,14 +346,13 @@ module Selenium
|
|
336
346
|
#
|
337
347
|
alias_method :[], :attribute
|
338
348
|
|
339
|
-
#
|
340
|
-
# for SearchContext and execute_script
|
341
349
|
#
|
342
350
|
# @api private
|
351
|
+
# @see SearchContext
|
343
352
|
#
|
344
353
|
|
345
354
|
def ref
|
346
|
-
@id
|
355
|
+
[:element, @id]
|
347
356
|
end
|
348
357
|
|
349
358
|
#
|
@@ -379,7 +388,7 @@ module Selenium
|
|
379
388
|
end
|
380
389
|
|
381
390
|
def screenshot
|
382
|
-
bridge.element_screenshot(
|
391
|
+
bridge.element_screenshot(@id)
|
383
392
|
end
|
384
393
|
end # Element
|
385
394
|
end # WebDriver
|
@@ -61,6 +61,12 @@ module Selenium
|
|
61
61
|
|
62
62
|
class StaleElementReferenceError < WebDriverError; end
|
63
63
|
|
64
|
+
#
|
65
|
+
# A command failed because the referenced shadow root is no longer attached to the DOM.
|
66
|
+
#
|
67
|
+
|
68
|
+
class DetachedShadowRootError < WebDriverError; end
|
69
|
+
|
64
70
|
#
|
65
71
|
# The target element is in an invalid state, rendering it impossible to interact with, for
|
66
72
|
# example if you click a disabled element.
|
@@ -93,6 +99,12 @@ module Selenium
|
|
93
99
|
|
94
100
|
class NoSuchWindowError < WebDriverError; end
|
95
101
|
|
102
|
+
#
|
103
|
+
# The element does not have a shadow root.
|
104
|
+
#
|
105
|
+
|
106
|
+
class NoSuchShadowRootError < WebDriverError; end
|
107
|
+
|
96
108
|
#
|
97
109
|
# An illegal attempt was made to set a cookie under a different domain than the current page.
|
98
110
|
#
|