selenium-webdriver 3.142.6 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGES +369 -5
- data/Gemfile +3 -1
- data/LICENSE +1 -1
- data/NOTICE +2 -0
- data/README.md +4 -5
- data/lib/selenium/server.rb +69 -63
- data/lib/selenium/webdriver/atoms/findElements.js +122 -0
- data/lib/selenium/webdriver/atoms/getAttribute.js +100 -7
- data/lib/selenium/webdriver/atoms/isDisplayed.js +76 -78
- data/lib/selenium/webdriver/atoms/mutationListener.js +55 -0
- data/lib/selenium/webdriver/chrome/driver.rb +26 -70
- data/lib/selenium/webdriver/chrome/{bridge.rb → features.rb} +50 -12
- data/lib/selenium/webdriver/chrome/options.rb +128 -53
- data/lib/selenium/webdriver/chrome/profile.rb +8 -5
- data/lib/selenium/webdriver/chrome/service.rb +8 -15
- data/lib/selenium/webdriver/chrome.rb +10 -9
- data/lib/selenium/webdriver/common/action_builder.rb +97 -249
- data/lib/selenium/webdriver/common/driver.rb +112 -23
- 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_authentication.rb +89 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_casting.rb +77 -0
- data/lib/selenium/webdriver/common/driver_extensions/{has_touch_screen.rb → has_cdp.rb} +10 -8
- data/lib/selenium/webdriver/common/driver_extensions/has_context.rb +45 -0
- data/lib/selenium/webdriver/{firefox/util.rb → common/driver_extensions/has_devtools.rb} +16 -19
- data/lib/selenium/webdriver/common/driver_extensions/has_launching.rb +38 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_location.rb +5 -8
- data/lib/selenium/webdriver/common/driver_extensions/has_log_events.rb +144 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_logs.rb +30 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_network_conditions.rb +17 -0
- data/lib/selenium/webdriver/common/driver_extensions/has_network_connection.rb +6 -27
- data/lib/selenium/webdriver/common/driver_extensions/has_network_interception.rb +136 -0
- 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/has_remote_status.rb +1 -0
- data/lib/selenium/webdriver/common/driver_extensions/{rotatable.rb → prints_page.rb} +18 -20
- data/lib/selenium/webdriver/common/element.rb +82 -22
- data/lib/selenium/webdriver/common/error.rb +32 -196
- data/lib/selenium/webdriver/common/interactions/interaction.rb +4 -1
- data/lib/selenium/webdriver/common/interactions/key_actions.rb +5 -5
- data/lib/selenium/webdriver/common/interactions/pointer_actions.rb +13 -13
- data/lib/selenium/webdriver/common/log_entry.rb +2 -2
- data/lib/selenium/webdriver/common/logger.rb +50 -15
- data/lib/selenium/webdriver/common/manager.rb +15 -15
- data/lib/selenium/webdriver/common/options.rb +184 -0
- data/lib/selenium/webdriver/common/platform.rb +6 -1
- data/lib/selenium/webdriver/common/port_prober.rb +4 -6
- data/lib/selenium/webdriver/common/profile_helper.rb +11 -9
- data/lib/selenium/webdriver/common/proxy.rb +6 -3
- data/lib/selenium/webdriver/common/search_context.rb +7 -3
- data/lib/selenium/webdriver/common/service.rb +17 -125
- data/lib/selenium/webdriver/common/service_manager.rb +151 -0
- data/lib/selenium/webdriver/common/shadow_root.rb +87 -0
- data/lib/selenium/webdriver/common/socket_lock.rb +2 -2
- data/lib/selenium/webdriver/common/socket_poller.rb +2 -2
- data/lib/selenium/webdriver/common/takes_screenshot.rb +66 -0
- data/lib/selenium/webdriver/common/target_locator.rb +32 -4
- data/lib/selenium/webdriver/common/timeouts.rb +31 -4
- data/lib/selenium/webdriver/common/wait.rb +1 -1
- data/lib/selenium/webdriver/common/window.rb +0 -4
- data/lib/selenium/webdriver/common/zipper.rb +3 -9
- data/lib/selenium/webdriver/common.rb +24 -17
- data/lib/selenium/webdriver/devtools/console_event.rb +38 -0
- data/lib/selenium/webdriver/devtools/exception_event.rb +36 -0
- data/lib/selenium/webdriver/devtools/mutation_event.rb +37 -0
- data/lib/selenium/webdriver/devtools/pinned_script.rb +59 -0
- data/lib/selenium/webdriver/devtools/request.rb +67 -0
- data/lib/selenium/webdriver/devtools/response.rb +66 -0
- data/lib/selenium/webdriver/devtools.rb +193 -0
- data/lib/selenium/webdriver/edge/driver.rb +7 -29
- data/lib/selenium/webdriver/edge/features.rb +44 -0
- data/lib/selenium/webdriver/edge/options.rb +11 -48
- data/lib/selenium/webdriver/{common/w3c_manager.rb → edge/profile.rb} +7 -19
- data/lib/selenium/webdriver/edge/service.rb +10 -26
- data/lib/selenium/webdriver/edge.rb +11 -14
- data/lib/selenium/webdriver/firefox/driver.rb +31 -19
- data/lib/selenium/webdriver/firefox/extension.rb +8 -0
- data/lib/selenium/webdriver/firefox/features.rb +66 -0
- data/lib/selenium/webdriver/firefox/options.rb +71 -50
- data/lib/selenium/webdriver/firefox/profile.rb +21 -71
- data/lib/selenium/webdriver/firefox/service.rb +5 -9
- data/lib/selenium/webdriver/firefox.rb +22 -20
- data/lib/selenium/webdriver/ie/driver.rb +1 -47
- data/lib/selenium/webdriver/ie/options.rb +15 -46
- data/lib/selenium/webdriver/ie/service.rb +13 -15
- data/lib/selenium/webdriver/ie.rb +8 -7
- data/lib/selenium/webdriver/remote/bridge.rb +561 -86
- data/lib/selenium/webdriver/remote/capabilities.rb +159 -123
- data/lib/selenium/webdriver/remote/commands.rb +163 -0
- data/lib/selenium/webdriver/remote/driver.rb +22 -12
- data/lib/selenium/webdriver/remote/http/common.rb +0 -5
- data/lib/selenium/webdriver/remote/http/default.rb +17 -20
- data/lib/selenium/webdriver/remote/http/persistent.rb +11 -6
- data/lib/selenium/webdriver/remote/response.rb +16 -47
- data/lib/selenium/webdriver/remote.rb +15 -12
- data/lib/selenium/webdriver/safari/driver.rb +3 -31
- data/lib/selenium/webdriver/safari/{bridge.rb → features.rb} +3 -3
- data/lib/selenium/webdriver/safari/options.rb +10 -29
- data/lib/selenium/webdriver/safari/service.rb +4 -8
- data/lib/selenium/webdriver/safari.rb +17 -9
- data/lib/selenium/webdriver/support/block_event_listener.rb +1 -1
- 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/color.rb +2 -2
- data/lib/selenium/webdriver/support/event_firing_bridge.rb +4 -4
- data/lib/selenium/webdriver/support/guards/guard.rb +89 -0
- data/lib/selenium/webdriver/{firefox/marionette/bridge.rb → support/guards/guard_condition.rb} +22 -19
- data/lib/selenium/webdriver/support/guards.rb +95 -0
- data/lib/selenium/webdriver/support/relative_locator.rb +51 -0
- data/lib/selenium/webdriver/support/select.rb +3 -3
- data/lib/selenium/webdriver/support.rb +1 -0
- data/lib/selenium/webdriver/version.rb +1 -1
- data/lib/selenium/webdriver.rb +13 -13
- data/selenium-webdriver.gemspec +28 -12
- metadata +129 -69
- data/lib/selenium/webdriver/common/bridge_helper.rb +0 -82
- data/lib/selenium/webdriver/common/driver_extensions/takes_screenshot.rb +0 -64
- data/lib/selenium/webdriver/common/keyboard.rb +0 -70
- data/lib/selenium/webdriver/common/mouse.rb +0 -89
- data/lib/selenium/webdriver/common/touch_action_builder.rb +0 -78
- data/lib/selenium/webdriver/common/touch_screen.rb +0 -123
- data/lib/selenium/webdriver/common/w3c_action_builder.rb +0 -212
- data/lib/selenium/webdriver/edge/bridge.rb +0 -76
- data/lib/selenium/webdriver/firefox/binary.rb +0 -187
- data/lib/selenium/webdriver/firefox/extension/prefs.json +0 -69
- data/lib/selenium/webdriver/firefox/extension/webdriver.xpi +0 -0
- data/lib/selenium/webdriver/firefox/launcher.rb +0 -111
- data/lib/selenium/webdriver/firefox/legacy/driver.rb +0 -83
- data/lib/selenium/webdriver/firefox/marionette/driver.rb +0 -90
- data/lib/selenium/webdriver/firefox/native/linux/amd64/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/firefox/native/linux/x86/x_ignore_nofocus.so +0 -0
- data/lib/selenium/webdriver/remote/oss/bridge.rb +0 -594
- data/lib/selenium/webdriver/remote/oss/commands.rb +0 -223
- data/lib/selenium/webdriver/remote/w3c/bridge.rb +0 -605
- data/lib/selenium/webdriver/remote/w3c/capabilities.rb +0 -310
- data/lib/selenium/webdriver/remote/w3c/commands.rb +0 -157
@@ -17,40 +17,19 @@
|
|
17
17
|
# specific language governing permissions and limitations
|
18
18
|
# under the License.
|
19
19
|
|
20
|
+
# TODO: Deprecated; Delete after 4.0 release
|
20
21
|
module Selenium
|
21
22
|
module WebDriver
|
22
23
|
module DriverExtensions
|
23
24
|
module HasNetworkConnection
|
24
25
|
def network_connection_type
|
25
|
-
|
26
|
-
|
27
|
-
connection_type = values_to_type[connection_value]
|
28
|
-
|
29
|
-
# In case the connection type is not recognized return the
|
30
|
-
# connection value.
|
31
|
-
connection_type || connection_value
|
32
|
-
end
|
33
|
-
|
34
|
-
def network_connection_type=(connection_type)
|
35
|
-
raise ArgumentError, 'Invalid connection type' unless valid_type? connection_type
|
36
|
-
|
37
|
-
connection_value = type_to_values[connection_type]
|
38
|
-
|
39
|
-
@bridge.network_connection = connection_value
|
40
|
-
end
|
41
|
-
|
42
|
-
private
|
43
|
-
|
44
|
-
def type_to_values
|
45
|
-
{airplane_mode: 1, wifi: 2, data: 4, all: 6, none: 0}
|
46
|
-
end
|
47
|
-
|
48
|
-
def values_to_type
|
49
|
-
type_to_values.invert
|
26
|
+
raise Error::UnsupportedOperationError,
|
27
|
+
'The W3C standard does not currently support getting network connection'
|
50
28
|
end
|
51
29
|
|
52
|
-
def
|
53
|
-
|
30
|
+
def network_connection_type=(*)
|
31
|
+
raise Error::UnsupportedOperationError,
|
32
|
+
'The W3C standard does not currently support setting network connection'
|
54
33
|
end
|
55
34
|
end # HasNetworkConnection
|
56
35
|
end # DriverExtensions
|
@@ -0,0 +1,136 @@
|
|
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 HasNetworkInterception
|
24
|
+
|
25
|
+
#
|
26
|
+
# Intercepts requests coming from browser allowing
|
27
|
+
# to either pass them through like proxy or provide
|
28
|
+
# a stubbed response instead.
|
29
|
+
#
|
30
|
+
# @example Log requests and pass through
|
31
|
+
# driver.intercept do |request, &continue|
|
32
|
+
# puts "#{request.method} #{request.url}"
|
33
|
+
# continue.call(request)
|
34
|
+
# end
|
35
|
+
#
|
36
|
+
# @example Stub requests for images
|
37
|
+
# driver.intercept do |request, &continue|
|
38
|
+
# if request.url.match?(/\.png$/)
|
39
|
+
# request.url = 'https://upload.wikimedia.org/wikipedia/commons/d/d5/Selenium_Logo.png'
|
40
|
+
# end
|
41
|
+
# continue.call(request)
|
42
|
+
# end
|
43
|
+
#
|
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
|
61
|
+
#
|
62
|
+
|
63
|
+
def intercept(&block)
|
64
|
+
devtools.network.set_cache_disabled(cache_disabled: true)
|
65
|
+
devtools.fetch.on(:request_paused) do |params|
|
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
|
123
|
+
)
|
124
|
+
end
|
125
|
+
end
|
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
|
133
|
+
end # HasNetworkInterception
|
134
|
+
end # DriverExtensions
|
135
|
+
end # WebDriver
|
136
|
+
end # Selenium
|
@@ -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
|
@@ -19,43 +19,41 @@
|
|
19
19
|
|
20
20
|
module Selenium
|
21
21
|
module WebDriver
|
22
|
-
#
|
23
|
-
# @api private
|
24
|
-
#
|
25
|
-
|
26
22
|
module DriverExtensions
|
27
|
-
module
|
28
|
-
|
29
|
-
|
23
|
+
module PrintsPage
|
24
|
+
#
|
25
|
+
# Save a page as a PDF to the given path
|
30
26
|
#
|
31
|
-
#
|
27
|
+
# @example Save Printed Page
|
28
|
+
# driver.save_print_page('../printed_page.pdf')
|
32
29
|
#
|
33
|
-
# @param [
|
30
|
+
# @param [String] path to where the pdf should be saved
|
34
31
|
#
|
35
32
|
# @api public
|
36
33
|
#
|
37
34
|
|
38
|
-
def
|
39
|
-
|
40
|
-
|
35
|
+
def save_print_page(path, **options)
|
36
|
+
File.open(path, 'wb') do |file|
|
37
|
+
content = Base64.decode64 print_page(**options)
|
38
|
+
file << content
|
41
39
|
end
|
42
|
-
|
43
|
-
bridge.screen_orientation = orientation.to_s.upcase
|
44
40
|
end
|
45
|
-
alias_method :rotate, :rotation=
|
46
41
|
|
47
42
|
#
|
48
|
-
#
|
43
|
+
# Return a Base64 encoded Print Page as a string
|
49
44
|
#
|
50
|
-
# @
|
45
|
+
# @see https://w3c.github.io/webdriver/#print-page
|
51
46
|
#
|
52
47
|
# @api public
|
53
48
|
#
|
54
49
|
|
55
|
-
def
|
56
|
-
|
50
|
+
def print_page(**options)
|
51
|
+
options[:pageRanges] = Array(options.delete(:page_ranges)) || []
|
52
|
+
options[:shrinkToFit] = options.delete(:shrink_to_fit) { true }
|
53
|
+
|
54
|
+
@bridge.print_page(options)
|
57
55
|
end
|
58
|
-
end #
|
56
|
+
end # PrintsPage
|
59
57
|
end # DriverExtensions
|
60
58
|
end # WebDriver
|
61
59
|
end # Selenium
|
@@ -20,7 +20,10 @@
|
|
20
20
|
module Selenium
|
21
21
|
module WebDriver
|
22
22
|
class Element
|
23
|
+
ELEMENT_KEY = 'element-6066-11e4-a52e-4f735466cecf'
|
24
|
+
|
23
25
|
include SearchContext
|
26
|
+
include TakesScreenshot
|
24
27
|
|
25
28
|
#
|
26
29
|
# Creates a new Element
|
@@ -89,13 +92,18 @@ module Selenium
|
|
89
92
|
end
|
90
93
|
|
91
94
|
#
|
92
|
-
#
|
93
|
-
#
|
94
|
-
#
|
95
|
-
#
|
96
|
-
#
|
97
|
-
#
|
98
|
-
#
|
95
|
+
# This method attempts to provide the most likely desired current value for the attribute
|
96
|
+
# of the element, even when that desired value is actually a JavaScript property.
|
97
|
+
# It is implemented with a custom JavaScript atom. To obtain the exact value of the attribute or property,
|
98
|
+
# use #dom_attribute or #property methods respectively.
|
99
|
+
#
|
100
|
+
# More exactly, this method will return the value of the property with the given name,
|
101
|
+
# if it exists. If it does not, then the value of the attribute with the given name is returned.
|
102
|
+
# If neither exists, null is returned.
|
103
|
+
#
|
104
|
+
# The "style" attribute is converted as best can be to a text representation with a trailing semi-colon.
|
105
|
+
#
|
106
|
+
# The following are deemed to be "boolean" attributes, and will return either "true" or "false":
|
99
107
|
#
|
100
108
|
# async, autofocus, autoplay, checked, compact, complete, controls, declare, defaultchecked,
|
101
109
|
# defaultselected, defer, disabled, draggable, ended, formnovalidate, hidden, indeterminate,
|
@@ -103,29 +111,73 @@ module Selenium
|
|
103
111
|
# nowrap, open, paused, pubdate, readonly, required, reversed, scoped, seamless, seeking,
|
104
112
|
# selected, spellcheck, truespeed, willvalidate
|
105
113
|
#
|
106
|
-
# Finally, the following commonly mis-capitalized attribute/property names are evaluated as
|
107
|
-
# expected:
|
114
|
+
# Finally, the following commonly mis-capitalized attribute/property names are evaluated as expected:
|
108
115
|
#
|
109
|
-
# class,
|
116
|
+
# When the value of "class" is requested, the "className" property is returned.
|
117
|
+
# When the value of "readonly" is requested, the "readOnly" property is returned.
|
110
118
|
#
|
111
119
|
# @param [String] name attribute name
|
112
120
|
# @return [String, nil] attribute value
|
113
121
|
#
|
122
|
+
# @see #dom_attribute
|
123
|
+
# @see #property
|
124
|
+
#
|
114
125
|
|
115
126
|
def attribute(name)
|
116
127
|
bridge.element_attribute self, name
|
117
128
|
end
|
118
129
|
|
119
130
|
#
|
120
|
-
#
|
121
|
-
#
|
131
|
+
# Gets the value of a declared HTML attribute of this element.
|
132
|
+
#
|
133
|
+
# As opposed to the #attribute method, this method
|
134
|
+
# only returns attributes declared in the element's HTML markup.
|
135
|
+
#
|
136
|
+
# If the attribute is not set, nil is returned.
|
137
|
+
#
|
138
|
+
# @param [String] name attribute name
|
139
|
+
# @return [String, nil] attribute value
|
140
|
+
#
|
141
|
+
# @see #attribute
|
142
|
+
# @see #property
|
143
|
+
#
|
144
|
+
|
145
|
+
def dom_attribute(name)
|
146
|
+
bridge.element_dom_attribute @id, name
|
147
|
+
end
|
148
|
+
|
149
|
+
#
|
150
|
+
# Gets the value of a JavaScript property of this element
|
151
|
+
# This will return the current value,
|
152
|
+
# even if this has been modified after the page has been loaded.
|
153
|
+
# If the value is not set, nil is returned.
|
122
154
|
#
|
123
155
|
# @param [String] name property name
|
124
156
|
# @return [String, nil] property value
|
125
157
|
#
|
126
158
|
|
127
159
|
def property(name)
|
128
|
-
bridge.element_property
|
160
|
+
bridge.element_property @id, name
|
161
|
+
end
|
162
|
+
|
163
|
+
#
|
164
|
+
# Gets the computed WAI-ARIA role of element
|
165
|
+
#
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
|
169
|
+
def aria_role
|
170
|
+
bridge.element_aria_role @id
|
171
|
+
end
|
172
|
+
|
173
|
+
#
|
174
|
+
# Gets the computed WAI-ARIA label of element.
|
175
|
+
#
|
176
|
+
# @return [String]
|
177
|
+
#
|
178
|
+
|
179
|
+
def accessible_name
|
180
|
+
bridge.element_aria_label @id
|
129
181
|
end
|
130
182
|
|
131
183
|
#
|
@@ -265,6 +317,16 @@ module Selenium
|
|
265
317
|
bridge.element_size @id
|
266
318
|
end
|
267
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
|
+
|
268
330
|
#-------------------------------- sugar --------------------------------
|
269
331
|
|
270
332
|
#
|
@@ -284,14 +346,13 @@ module Selenium
|
|
284
346
|
#
|
285
347
|
alias_method :[], :attribute
|
286
348
|
|
287
|
-
#
|
288
|
-
# for SearchContext and execute_script
|
289
349
|
#
|
290
350
|
# @api private
|
351
|
+
# @see SearchContext
|
291
352
|
#
|
292
353
|
|
293
354
|
def ref
|
294
|
-
@id
|
355
|
+
[:element, @id]
|
295
356
|
end
|
296
357
|
|
297
358
|
#
|
@@ -312,12 +373,7 @@ module Selenium
|
|
312
373
|
#
|
313
374
|
|
314
375
|
def as_json(*)
|
315
|
-
|
316
|
-
'element-6066-11e4-a52e-4f735466cecf'
|
317
|
-
else
|
318
|
-
'ELEMENT'
|
319
|
-
end
|
320
|
-
@id.is_a?(Hash) ? @id : {key => @id}
|
376
|
+
@id.is_a?(Hash) ? @id : {ELEMENT_KEY => @id}
|
321
377
|
end
|
322
378
|
|
323
379
|
private
|
@@ -330,6 +386,10 @@ module Selenium
|
|
330
386
|
|
331
387
|
tn == 'option' || (tn == 'input' && %w[radio checkbox].include?(type))
|
332
388
|
end
|
389
|
+
|
390
|
+
def screenshot
|
391
|
+
bridge.element_screenshot(@id)
|
392
|
+
end
|
333
393
|
end # Element
|
334
394
|
end # WebDriver
|
335
395
|
end # Selenium
|