selenium-devtools 0.104.0 → 0.105.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/lib/selenium/devtools/v101/accessibility.rb +91 -0
  3. data/lib/selenium/devtools/v101/animation.rb +94 -0
  4. data/lib/selenium/devtools/v101/audits.rb +62 -0
  5. data/lib/selenium/devtools/v101/background_service.rb +63 -0
  6. data/lib/selenium/devtools/v101/browser.rb +135 -0
  7. data/lib/selenium/devtools/v101/cache_storage.rb +69 -0
  8. data/lib/selenium/devtools/v101/cast.rb +71 -0
  9. data/lib/selenium/devtools/v101/console.rb +53 -0
  10. data/lib/selenium/devtools/v101/css.rb +194 -0
  11. data/lib/selenium/devtools/v101/database.rb +60 -0
  12. data/lib/selenium/devtools/v101/debugger.rb +220 -0
  13. data/lib/selenium/devtools/v101/device_orientation.rb +49 -0
  14. data/lib/selenium/devtools/v101/dom.rb +335 -0
  15. data/lib/selenium/devtools/v101/dom_debugger.rb +94 -0
  16. data/lib/selenium/devtools/v101/dom_snapshot.rb +63 -0
  17. data/lib/selenium/devtools/v101/dom_storage.rb +75 -0
  18. data/lib/selenium/devtools/v101/emulation.rb +201 -0
  19. data/lib/selenium/devtools/v101/event_breakpoints.rb +48 -0
  20. data/lib/selenium/devtools/v101/fetch.rb +103 -0
  21. data/lib/selenium/devtools/v101/headless_experimental.rb +57 -0
  22. data/lib/selenium/devtools/v101/heap_profiler.rb +105 -0
  23. data/lib/selenium/devtools/v101/indexed_db.rb +96 -0
  24. data/lib/selenium/devtools/v101/input.rb +168 -0
  25. data/lib/selenium/devtools/v101/inspector.rb +51 -0
  26. data/lib/selenium/devtools/v101/io.rb +55 -0
  27. data/lib/selenium/devtools/v101/layer_tree.rb +91 -0
  28. data/lib/selenium/devtools/v101/log.rb +62 -0
  29. data/lib/selenium/devtools/v101/media.rb +53 -0
  30. data/lib/selenium/devtools/v101/memory.rb +82 -0
  31. data/lib/selenium/devtools/v101/network.rb +264 -0
  32. data/lib/selenium/devtools/v101/overlay.rb +202 -0
  33. data/lib/selenium/devtools/v101/page.rb +394 -0
  34. data/lib/selenium/devtools/v101/performance.rb +59 -0
  35. data/lib/selenium/devtools/v101/performance_timeline.rb +46 -0
  36. data/lib/selenium/devtools/v101/profiler.rb +95 -0
  37. data/lib/selenium/devtools/v101/runtime.rb +199 -0
  38. data/lib/selenium/devtools/v101/schema.rb +42 -0
  39. data/lib/selenium/devtools/v101/security.rb +67 -0
  40. data/lib/selenium/devtools/v101/service_worker.rb +112 -0
  41. data/lib/selenium/devtools/v101/storage.rb +118 -0
  42. data/lib/selenium/devtools/v101/system_info.rb +46 -0
  43. data/lib/selenium/devtools/v101/target.rb +146 -0
  44. data/lib/selenium/devtools/v101/tethering.rb +51 -0
  45. data/lib/selenium/devtools/v101/tracing.rb +75 -0
  46. data/lib/selenium/devtools/v101/web_audio.rb +66 -0
  47. data/lib/selenium/devtools/v101/web_authn.rb +96 -0
  48. data/lib/selenium/devtools/v101.rb +1 -0
  49. data/lib/selenium/devtools/v102/web_authn.rb +2 -2
  50. data/lib/selenium/devtools/v105/accessibility.rb +91 -0
  51. data/lib/selenium/devtools/v105/animation.rb +94 -0
  52. data/lib/selenium/devtools/v105/audits.rb +62 -0
  53. data/lib/selenium/devtools/v105/background_service.rb +63 -0
  54. data/lib/selenium/devtools/v105/browser.rb +135 -0
  55. data/lib/selenium/devtools/v105/cache_storage.rb +69 -0
  56. data/lib/selenium/devtools/v105/cast.rb +71 -0
  57. data/lib/selenium/devtools/v105/console.rb +53 -0
  58. data/lib/selenium/devtools/v105/css.rb +201 -0
  59. data/lib/selenium/devtools/v105/database.rb +60 -0
  60. data/lib/selenium/devtools/v105/debugger.rb +232 -0
  61. data/lib/selenium/devtools/v105/device_orientation.rb +49 -0
  62. data/lib/selenium/devtools/v105/dom.rb +340 -0
  63. data/lib/selenium/devtools/v105/dom_debugger.rb +94 -0
  64. data/lib/selenium/devtools/v105/dom_snapshot.rb +63 -0
  65. data/lib/selenium/devtools/v105/dom_storage.rb +75 -0
  66. data/lib/selenium/devtools/v105/emulation.rb +206 -0
  67. data/lib/selenium/devtools/v105/event_breakpoints.rb +48 -0
  68. data/lib/selenium/devtools/v105/fetch.rb +103 -0
  69. data/lib/selenium/devtools/v105/headless_experimental.rb +57 -0
  70. data/lib/selenium/devtools/v105/heap_profiler.rb +107 -0
  71. data/lib/selenium/devtools/v105/indexed_db.rb +96 -0
  72. data/lib/selenium/devtools/v105/input.rb +168 -0
  73. data/lib/selenium/devtools/v105/inspector.rb +51 -0
  74. data/lib/selenium/devtools/v105/io.rb +55 -0
  75. data/lib/selenium/devtools/v105/layer_tree.rb +91 -0
  76. data/lib/selenium/devtools/v105/log.rb +62 -0
  77. data/lib/selenium/devtools/v105/media.rb +53 -0
  78. data/lib/selenium/devtools/v105/memory.rb +82 -0
  79. data/lib/selenium/devtools/v105/network.rb +264 -0
  80. data/lib/selenium/devtools/v105/overlay.rb +202 -0
  81. data/lib/selenium/devtools/v105/page.rb +394 -0
  82. data/lib/selenium/devtools/v105/performance.rb +59 -0
  83. data/lib/selenium/devtools/v105/performance_timeline.rb +46 -0
  84. data/lib/selenium/devtools/v105/profiler.rb +95 -0
  85. data/lib/selenium/devtools/v105/runtime.rb +201 -0
  86. data/lib/selenium/devtools/v105/schema.rb +42 -0
  87. data/lib/selenium/devtools/v105/security.rb +67 -0
  88. data/lib/selenium/devtools/v105/service_worker.rb +112 -0
  89. data/lib/selenium/devtools/v105/storage.rb +129 -0
  90. data/lib/selenium/devtools/v105/system_info.rb +46 -0
  91. data/lib/selenium/devtools/v105/target.rb +146 -0
  92. data/lib/selenium/devtools/v105/tethering.rb +51 -0
  93. data/lib/selenium/devtools/v105/tracing.rb +75 -0
  94. data/lib/selenium/devtools/v105/web_audio.rb +66 -0
  95. data/lib/selenium/devtools/v105/web_authn.rb +97 -0
  96. data/lib/selenium/devtools/v105.rb +1 -0
  97. data/lib/selenium/devtools/version.rb +1 -1
  98. metadata +97 -3
@@ -0,0 +1,82 @@
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
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ module V105
24
+ class Memory
25
+
26
+ def initialize(devtools)
27
+ @devtools = devtools
28
+ end
29
+
30
+ def on(event, &block)
31
+ event = EVENTS[event] if event.is_a?(Symbol)
32
+ @devtools.callbacks["Memory.#{event}"] << block
33
+ end
34
+
35
+ def get_dom_counters
36
+ @devtools.send_cmd('Memory.getDOMCounters')
37
+ end
38
+
39
+ def prepare_for_leak_detection
40
+ @devtools.send_cmd('Memory.prepareForLeakDetection')
41
+ end
42
+
43
+ def forcibly_purge_javascript_memory
44
+ @devtools.send_cmd('Memory.forciblyPurgeJavaScriptMemory')
45
+ end
46
+
47
+ def set_pressure_notifications_suppressed(suppressed:)
48
+ @devtools.send_cmd('Memory.setPressureNotificationsSuppressed',
49
+ suppressed: suppressed)
50
+ end
51
+
52
+ def simulate_pressure_notification(level:)
53
+ @devtools.send_cmd('Memory.simulatePressureNotification',
54
+ level: level)
55
+ end
56
+
57
+ def start_sampling(sampling_interval: nil, suppress_randomness: nil)
58
+ @devtools.send_cmd('Memory.startSampling',
59
+ samplingInterval: sampling_interval,
60
+ suppressRandomness: suppress_randomness)
61
+ end
62
+
63
+ def stop_sampling
64
+ @devtools.send_cmd('Memory.stopSampling')
65
+ end
66
+
67
+ def get_all_time_sampling_profile
68
+ @devtools.send_cmd('Memory.getAllTimeSamplingProfile')
69
+ end
70
+
71
+ def get_browser_sampling_profile
72
+ @devtools.send_cmd('Memory.getBrowserSamplingProfile')
73
+ end
74
+
75
+ def get_sampling_profile
76
+ @devtools.send_cmd('Memory.getSamplingProfile')
77
+ end
78
+
79
+ end # Memory
80
+ end # V105
81
+ end # DevTools
82
+ end # Selenium
@@ -0,0 +1,264 @@
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
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ module V105
24
+ class Network
25
+ EVENTS = {
26
+ data_received: 'dataReceived',
27
+ event_source_message_received: 'eventSourceMessageReceived',
28
+ loading_failed: 'loadingFailed',
29
+ loading_finished: 'loadingFinished',
30
+ request_intercepted: 'requestIntercepted',
31
+ request_served_from_cache: 'requestServedFromCache',
32
+ request_will_be_sent: 'requestWillBeSent',
33
+ resource_changed_priority: 'resourceChangedPriority',
34
+ signed_exchange_received: 'signedExchangeReceived',
35
+ response_received: 'responseReceived',
36
+ web_socket_closed: 'webSocketClosed',
37
+ web_socket_created: 'webSocketCreated',
38
+ web_socket_frame_error: 'webSocketFrameError',
39
+ web_socket_frame_received: 'webSocketFrameReceived',
40
+ web_socket_frame_sent: 'webSocketFrameSent',
41
+ web_socket_handshake_response_received: 'webSocketHandshakeResponseReceived',
42
+ web_socket_will_send_handshake_request: 'webSocketWillSendHandshakeRequest',
43
+ web_transport_created: 'webTransportCreated',
44
+ web_transport_connection_established: 'webTransportConnectionEstablished',
45
+ web_transport_closed: 'webTransportClosed',
46
+ request_will_be_sent_extra_info: 'requestWillBeSentExtraInfo',
47
+ response_received_extra_info: 'responseReceivedExtraInfo',
48
+ trust_token_operation_done: 'trustTokenOperationDone',
49
+ subresource_web_bundle_metadata_received: 'subresourceWebBundleMetadataReceived',
50
+ subresource_web_bundle_metadata_error: 'subresourceWebBundleMetadataError',
51
+ subresource_web_bundle_inner_response_parsed: 'subresourceWebBundleInnerResponseParsed',
52
+ subresource_web_bundle_inner_response_error: 'subresourceWebBundleInnerResponseError',
53
+ reporting_api_report_added: 'reportingApiReportAdded',
54
+ reporting_api_report_updated: 'reportingApiReportUpdated',
55
+ reporting_api_endpoints_changed_for_origin: 'reportingApiEndpointsChangedForOrigin',
56
+ }.freeze
57
+
58
+ def initialize(devtools)
59
+ @devtools = devtools
60
+ end
61
+
62
+ def on(event, &block)
63
+ event = EVENTS[event] if event.is_a?(Symbol)
64
+ @devtools.callbacks["Network.#{event}"] << block
65
+ end
66
+
67
+ def set_accepted_encodings(encodings:)
68
+ @devtools.send_cmd('Network.setAcceptedEncodings',
69
+ encodings: encodings)
70
+ end
71
+
72
+ def clear_accepted_encodings_override
73
+ @devtools.send_cmd('Network.clearAcceptedEncodingsOverride')
74
+ end
75
+
76
+ def can_clear_browser_cache
77
+ @devtools.send_cmd('Network.canClearBrowserCache')
78
+ end
79
+
80
+ def can_clear_browser_cookies
81
+ @devtools.send_cmd('Network.canClearBrowserCookies')
82
+ end
83
+
84
+ def can_emulate_network_conditions
85
+ @devtools.send_cmd('Network.canEmulateNetworkConditions')
86
+ end
87
+
88
+ def clear_browser_cache
89
+ @devtools.send_cmd('Network.clearBrowserCache')
90
+ end
91
+
92
+ def clear_browser_cookies
93
+ @devtools.send_cmd('Network.clearBrowserCookies')
94
+ end
95
+
96
+ def continue_intercepted_request(interception_id:, error_reason: nil, raw_response: nil, url: nil, method: nil, post_data: nil, headers: nil, auth_challenge_response: nil)
97
+ @devtools.send_cmd('Network.continueInterceptedRequest',
98
+ interceptionId: interception_id,
99
+ errorReason: error_reason,
100
+ rawResponse: raw_response,
101
+ url: url,
102
+ method: method,
103
+ postData: post_data,
104
+ headers: headers,
105
+ authChallengeResponse: auth_challenge_response)
106
+ end
107
+
108
+ def delete_cookies(name:, url: nil, domain: nil, path: nil)
109
+ @devtools.send_cmd('Network.deleteCookies',
110
+ name: name,
111
+ url: url,
112
+ domain: domain,
113
+ path: path)
114
+ end
115
+
116
+ def disable
117
+ @devtools.send_cmd('Network.disable')
118
+ end
119
+
120
+ def emulate_network_conditions(offline:, latency:, download_throughput:, upload_throughput:, connection_type: nil)
121
+ @devtools.send_cmd('Network.emulateNetworkConditions',
122
+ offline: offline,
123
+ latency: latency,
124
+ downloadThroughput: download_throughput,
125
+ uploadThroughput: upload_throughput,
126
+ connectionType: connection_type)
127
+ end
128
+
129
+ def enable(max_total_buffer_size: nil, max_resource_buffer_size: nil, max_post_data_size: nil)
130
+ @devtools.send_cmd('Network.enable',
131
+ maxTotalBufferSize: max_total_buffer_size,
132
+ maxResourceBufferSize: max_resource_buffer_size,
133
+ maxPostDataSize: max_post_data_size)
134
+ end
135
+
136
+ def get_all_cookies
137
+ @devtools.send_cmd('Network.getAllCookies')
138
+ end
139
+
140
+ def get_certificate(origin:)
141
+ @devtools.send_cmd('Network.getCertificate',
142
+ origin: origin)
143
+ end
144
+
145
+ def get_cookies(urls: nil)
146
+ @devtools.send_cmd('Network.getCookies',
147
+ urls: urls)
148
+ end
149
+
150
+ def get_response_body(request_id:)
151
+ @devtools.send_cmd('Network.getResponseBody',
152
+ requestId: request_id)
153
+ end
154
+
155
+ def get_request_post_data(request_id:)
156
+ @devtools.send_cmd('Network.getRequestPostData',
157
+ requestId: request_id)
158
+ end
159
+
160
+ def get_response_body_for_interception(interception_id:)
161
+ @devtools.send_cmd('Network.getResponseBodyForInterception',
162
+ interceptionId: interception_id)
163
+ end
164
+
165
+ def take_response_body_for_interception_as_stream(interception_id:)
166
+ @devtools.send_cmd('Network.takeResponseBodyForInterceptionAsStream',
167
+ interceptionId: interception_id)
168
+ end
169
+
170
+ def replay_xhr(request_id:)
171
+ @devtools.send_cmd('Network.replayXHR',
172
+ requestId: request_id)
173
+ end
174
+
175
+ def search_in_response_body(request_id:, query:, case_sensitive: nil, is_regex: nil)
176
+ @devtools.send_cmd('Network.searchInResponseBody',
177
+ requestId: request_id,
178
+ query: query,
179
+ caseSensitive: case_sensitive,
180
+ isRegex: is_regex)
181
+ end
182
+
183
+ def set_blocked_urls(urls:)
184
+ @devtools.send_cmd('Network.setBlockedURLs',
185
+ urls: urls)
186
+ end
187
+
188
+ def set_bypass_service_worker(bypass:)
189
+ @devtools.send_cmd('Network.setBypassServiceWorker',
190
+ bypass: bypass)
191
+ end
192
+
193
+ def set_cache_disabled(cache_disabled:)
194
+ @devtools.send_cmd('Network.setCacheDisabled',
195
+ cacheDisabled: cache_disabled)
196
+ end
197
+
198
+ def set_cookie(name:, value:, url: nil, domain: nil, path: nil, secure: nil, http_only: nil, same_site: nil, expires: nil, priority: nil, same_party: nil, source_scheme: nil, source_port: nil, partition_key: nil)
199
+ @devtools.send_cmd('Network.setCookie',
200
+ name: name,
201
+ value: value,
202
+ url: url,
203
+ domain: domain,
204
+ path: path,
205
+ secure: secure,
206
+ httpOnly: http_only,
207
+ sameSite: same_site,
208
+ expires: expires,
209
+ priority: priority,
210
+ sameParty: same_party,
211
+ sourceScheme: source_scheme,
212
+ sourcePort: source_port,
213
+ partitionKey: partition_key)
214
+ end
215
+
216
+ def set_cookies(cookies:)
217
+ @devtools.send_cmd('Network.setCookies',
218
+ cookies: cookies)
219
+ end
220
+
221
+ def set_extra_http_headers(headers:)
222
+ @devtools.send_cmd('Network.setExtraHTTPHeaders',
223
+ headers: headers)
224
+ end
225
+
226
+ def set_attach_debug_stack(enabled:)
227
+ @devtools.send_cmd('Network.setAttachDebugStack',
228
+ enabled: enabled)
229
+ end
230
+
231
+ def set_request_interception(patterns:)
232
+ @devtools.send_cmd('Network.setRequestInterception',
233
+ patterns: patterns)
234
+ end
235
+
236
+ def set_user_agent_override(user_agent:, accept_language: nil, platform: nil, user_agent_metadata: nil)
237
+ @devtools.send_cmd('Network.setUserAgentOverride',
238
+ userAgent: user_agent,
239
+ acceptLanguage: accept_language,
240
+ platform: platform,
241
+ userAgentMetadata: user_agent_metadata)
242
+ end
243
+
244
+ def get_security_isolation_status(frame_id: nil)
245
+ @devtools.send_cmd('Network.getSecurityIsolationStatus',
246
+ frameId: frame_id)
247
+ end
248
+
249
+ def enable_reporting_api(enable:)
250
+ @devtools.send_cmd('Network.enableReportingApi',
251
+ enable: enable)
252
+ end
253
+
254
+ def load_network_resource(frame_id: nil, url:, options:)
255
+ @devtools.send_cmd('Network.loadNetworkResource',
256
+ frameId: frame_id,
257
+ url: url,
258
+ options: options)
259
+ end
260
+
261
+ end # Network
262
+ end # V105
263
+ end # DevTools
264
+ end # Selenium
@@ -0,0 +1,202 @@
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
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ module V105
24
+ class Overlay
25
+ EVENTS = {
26
+ inspect_node_requested: 'inspectNodeRequested',
27
+ node_highlight_requested: 'nodeHighlightRequested',
28
+ screenshot_requested: 'screenshotRequested',
29
+ inspect_mode_canceled: 'inspectModeCanceled',
30
+ }.freeze
31
+
32
+ def initialize(devtools)
33
+ @devtools = devtools
34
+ end
35
+
36
+ def on(event, &block)
37
+ event = EVENTS[event] if event.is_a?(Symbol)
38
+ @devtools.callbacks["Overlay.#{event}"] << block
39
+ end
40
+
41
+ def disable
42
+ @devtools.send_cmd('Overlay.disable')
43
+ end
44
+
45
+ def enable
46
+ @devtools.send_cmd('Overlay.enable')
47
+ end
48
+
49
+ def get_highlight_object_for_test(node_id:, include_distance: nil, include_style: nil, color_format: nil, show_accessibility_info: nil)
50
+ @devtools.send_cmd('Overlay.getHighlightObjectForTest',
51
+ nodeId: node_id,
52
+ includeDistance: include_distance,
53
+ includeStyle: include_style,
54
+ colorFormat: color_format,
55
+ showAccessibilityInfo: show_accessibility_info)
56
+ end
57
+
58
+ def get_grid_highlight_objects_for_test(node_ids:)
59
+ @devtools.send_cmd('Overlay.getGridHighlightObjectsForTest',
60
+ nodeIds: node_ids)
61
+ end
62
+
63
+ def get_source_order_highlight_object_for_test(node_id:)
64
+ @devtools.send_cmd('Overlay.getSourceOrderHighlightObjectForTest',
65
+ nodeId: node_id)
66
+ end
67
+
68
+ def hide_highlight
69
+ @devtools.send_cmd('Overlay.hideHighlight')
70
+ end
71
+
72
+ def highlight_frame(frame_id:, content_color: nil, content_outline_color: nil)
73
+ @devtools.send_cmd('Overlay.highlightFrame',
74
+ frameId: frame_id,
75
+ contentColor: content_color,
76
+ contentOutlineColor: content_outline_color)
77
+ end
78
+
79
+ def highlight_node(highlight_config:, node_id: nil, backend_node_id: nil, object_id: nil, selector: nil)
80
+ @devtools.send_cmd('Overlay.highlightNode',
81
+ highlightConfig: highlight_config,
82
+ nodeId: node_id,
83
+ backendNodeId: backend_node_id,
84
+ objectId: object_id,
85
+ selector: selector)
86
+ end
87
+
88
+ def highlight_quad(quad:, color: nil, outline_color: nil)
89
+ @devtools.send_cmd('Overlay.highlightQuad',
90
+ quad: quad,
91
+ color: color,
92
+ outlineColor: outline_color)
93
+ end
94
+
95
+ def highlight_rect(x:, y:, width:, height:, color: nil, outline_color: nil)
96
+ @devtools.send_cmd('Overlay.highlightRect',
97
+ x: x,
98
+ y: y,
99
+ width: width,
100
+ height: height,
101
+ color: color,
102
+ outlineColor: outline_color)
103
+ end
104
+
105
+ def highlight_source_order(source_order_config:, node_id: nil, backend_node_id: nil, object_id: nil)
106
+ @devtools.send_cmd('Overlay.highlightSourceOrder',
107
+ sourceOrderConfig: source_order_config,
108
+ nodeId: node_id,
109
+ backendNodeId: backend_node_id,
110
+ objectId: object_id)
111
+ end
112
+
113
+ def set_inspect_mode(mode:, highlight_config: nil)
114
+ @devtools.send_cmd('Overlay.setInspectMode',
115
+ mode: mode,
116
+ highlightConfig: highlight_config)
117
+ end
118
+
119
+ def set_show_ad_highlights(show:)
120
+ @devtools.send_cmd('Overlay.setShowAdHighlights',
121
+ show: show)
122
+ end
123
+
124
+ def set_paused_in_debugger_message(message: nil)
125
+ @devtools.send_cmd('Overlay.setPausedInDebuggerMessage',
126
+ message: message)
127
+ end
128
+
129
+ def set_show_debug_borders(show:)
130
+ @devtools.send_cmd('Overlay.setShowDebugBorders',
131
+ show: show)
132
+ end
133
+
134
+ def set_show_fps_counter(show:)
135
+ @devtools.send_cmd('Overlay.setShowFPSCounter',
136
+ show: show)
137
+ end
138
+
139
+ def set_show_grid_overlays(grid_node_highlight_configs:)
140
+ @devtools.send_cmd('Overlay.setShowGridOverlays',
141
+ gridNodeHighlightConfigs: grid_node_highlight_configs)
142
+ end
143
+
144
+ def set_show_flex_overlays(flex_node_highlight_configs:)
145
+ @devtools.send_cmd('Overlay.setShowFlexOverlays',
146
+ flexNodeHighlightConfigs: flex_node_highlight_configs)
147
+ end
148
+
149
+ def set_show_scroll_snap_overlays(scroll_snap_highlight_configs:)
150
+ @devtools.send_cmd('Overlay.setShowScrollSnapOverlays',
151
+ scrollSnapHighlightConfigs: scroll_snap_highlight_configs)
152
+ end
153
+
154
+ def set_show_container_query_overlays(container_query_highlight_configs:)
155
+ @devtools.send_cmd('Overlay.setShowContainerQueryOverlays',
156
+ containerQueryHighlightConfigs: container_query_highlight_configs)
157
+ end
158
+
159
+ def set_show_paint_rects(result:)
160
+ @devtools.send_cmd('Overlay.setShowPaintRects',
161
+ result: result)
162
+ end
163
+
164
+ def set_show_layout_shift_regions(result:)
165
+ @devtools.send_cmd('Overlay.setShowLayoutShiftRegions',
166
+ result: result)
167
+ end
168
+
169
+ def set_show_scroll_bottleneck_rects(show:)
170
+ @devtools.send_cmd('Overlay.setShowScrollBottleneckRects',
171
+ show: show)
172
+ end
173
+
174
+ def set_show_hit_test_borders(show:)
175
+ @devtools.send_cmd('Overlay.setShowHitTestBorders',
176
+ show: show)
177
+ end
178
+
179
+ def set_show_web_vitals(show:)
180
+ @devtools.send_cmd('Overlay.setShowWebVitals',
181
+ show: show)
182
+ end
183
+
184
+ def set_show_viewport_size_on_resize(show:)
185
+ @devtools.send_cmd('Overlay.setShowViewportSizeOnResize',
186
+ show: show)
187
+ end
188
+
189
+ def set_show_hinge(hinge_config: nil)
190
+ @devtools.send_cmd('Overlay.setShowHinge',
191
+ hingeConfig: hinge_config)
192
+ end
193
+
194
+ def set_show_isolated_elements(isolated_element_highlight_configs:)
195
+ @devtools.send_cmd('Overlay.setShowIsolatedElements',
196
+ isolatedElementHighlightConfigs: isolated_element_highlight_configs)
197
+ end
198
+
199
+ end # Overlay
200
+ end # V105
201
+ end # DevTools
202
+ end # Selenium