selenium-devtools 0.0.1.alpha

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/lib/selenium/devtools/v88.rb +1 -0
  3. data/lib/selenium/devtools/v88/accessibility.rb +73 -0
  4. data/lib/selenium/devtools/v88/animation.rb +100 -0
  5. data/lib/selenium/devtools/v88/application_cache.rb +66 -0
  6. data/lib/selenium/devtools/v88/audits.rb +63 -0
  7. data/lib/selenium/devtools/v88/background_service.rb +69 -0
  8. data/lib/selenium/devtools/v88/browser.rb +130 -0
  9. data/lib/selenium/devtools/v88/cache_storage.rb +75 -0
  10. data/lib/selenium/devtools/v88/cast.rb +72 -0
  11. data/lib/selenium/devtools/v88/console.rb +59 -0
  12. data/lib/selenium/devtools/v88/css.rb +181 -0
  13. data/lib/selenium/devtools/v88/database.rb +66 -0
  14. data/lib/selenium/devtools/v88/debugger.rb +233 -0
  15. data/lib/selenium/devtools/v88/device_orientation.rb +55 -0
  16. data/lib/selenium/devtools/v88/dom.rb +329 -0
  17. data/lib/selenium/devtools/v88/dom_debugger.rb +95 -0
  18. data/lib/selenium/devtools/v88/dom_snapshot.rb +67 -0
  19. data/lib/selenium/devtools/v88/dom_storage.rb +81 -0
  20. data/lib/selenium/devtools/v88/emulation.rb +198 -0
  21. data/lib/selenium/devtools/v88/fetch.rb +99 -0
  22. data/lib/selenium/devtools/v88/headless_experimental.rb +63 -0
  23. data/lib/selenium/devtools/v88/heap_profiler.rb +109 -0
  24. data/lib/selenium/devtools/v88/indexed_db.rb +102 -0
  25. data/lib/selenium/devtools/v88/input.rb +148 -0
  26. data/lib/selenium/devtools/v88/inspector.rb +57 -0
  27. data/lib/selenium/devtools/v88/io.rb +61 -0
  28. data/lib/selenium/devtools/v88/layer_tree.rb +97 -0
  29. data/lib/selenium/devtools/v88/log.rb +68 -0
  30. data/lib/selenium/devtools/v88/media.rb +59 -0
  31. data/lib/selenium/devtools/v88/memory.rb +88 -0
  32. data/lib/selenium/devtools/v88/network.rb +247 -0
  33. data/lib/selenium/devtools/v88/overlay.rb +183 -0
  34. data/lib/selenium/devtools/v88/page.rb +376 -0
  35. data/lib/selenium/devtools/v88/performance.rb +65 -0
  36. data/lib/selenium/devtools/v88/profiler.rb +125 -0
  37. data/lib/selenium/devtools/v88/runtime.rb +197 -0
  38. data/lib/selenium/devtools/v88/schema.rb +48 -0
  39. data/lib/selenium/devtools/v88/security.rb +73 -0
  40. data/lib/selenium/devtools/v88/service_worker.rb +118 -0
  41. data/lib/selenium/devtools/v88/storage.rb +103 -0
  42. data/lib/selenium/devtools/v88/system_info.rb +52 -0
  43. data/lib/selenium/devtools/v88/target.rb +145 -0
  44. data/lib/selenium/devtools/v88/tethering.rb +57 -0
  45. data/lib/selenium/devtools/v88/tracing.rb +79 -0
  46. data/lib/selenium/devtools/v88/web_audio.rb +72 -0
  47. data/lib/selenium/devtools/v88/web_authn.rb +102 -0
  48. data/lib/selenium/devtools/version.rb +24 -0
  49. metadata +99 -0
@@ -0,0 +1,61 @@
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 WebDriver
23
+ class DevTools
24
+ def io
25
+ @io ||= V88::IO.new(self)
26
+ end
27
+
28
+ module V88
29
+ class IO
30
+
31
+ def initialize(devtools)
32
+ @devtools = devtools
33
+ end
34
+
35
+ def on(event, &block)
36
+ event = EVENTS[event] if event.is_a?(Symbol)
37
+ @devtools.callbacks["IO.#{event}"] << block
38
+ end
39
+
40
+ def close(handle:)
41
+ @devtools.send_cmd('IO.close',
42
+ handle: handle)
43
+ end
44
+
45
+ def read(handle:, offset: nil, size: nil)
46
+ @devtools.send_cmd('IO.read',
47
+ handle: handle,
48
+ offset: offset,
49
+ size: size)
50
+ end
51
+
52
+ def resolve_blob(object_id:)
53
+ @devtools.send_cmd('IO.resolveBlob',
54
+ objectId: object_id)
55
+ end
56
+
57
+ end # V88
58
+ end # IO
59
+ end # DevTools
60
+ end # WebDriver
61
+ end # Selenium
@@ -0,0 +1,97 @@
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 WebDriver
23
+ class DevTools
24
+ def layer_tree
25
+ @layer_tree ||= V88::LayerTree.new(self)
26
+ end
27
+
28
+ module V88
29
+ class LayerTree
30
+ EVENTS = {
31
+ layer_painted: 'layerPainted',
32
+ layer_tree_did_change: 'layerTreeDidChange',
33
+ }.freeze
34
+
35
+ def initialize(devtools)
36
+ @devtools = devtools
37
+ end
38
+
39
+ def on(event, &block)
40
+ event = EVENTS[event] if event.is_a?(Symbol)
41
+ @devtools.callbacks["LayerTree.#{event}"] << block
42
+ end
43
+
44
+ def compositing_reasons(layer_id:)
45
+ @devtools.send_cmd('LayerTree.compositingReasons',
46
+ layerId: layer_id)
47
+ end
48
+
49
+ def disable
50
+ @devtools.send_cmd('LayerTree.disable')
51
+ end
52
+
53
+ def enable
54
+ @devtools.send_cmd('LayerTree.enable')
55
+ end
56
+
57
+ def load_snapshot(tiles:)
58
+ @devtools.send_cmd('LayerTree.loadSnapshot',
59
+ tiles: tiles)
60
+ end
61
+
62
+ def make_snapshot(layer_id:)
63
+ @devtools.send_cmd('LayerTree.makeSnapshot',
64
+ layerId: layer_id)
65
+ end
66
+
67
+ def profile_snapshot(snapshot_id:, min_repeat_count: nil, min_duration: nil, clip_rect: nil)
68
+ @devtools.send_cmd('LayerTree.profileSnapshot',
69
+ snapshotId: snapshot_id,
70
+ minRepeatCount: min_repeat_count,
71
+ minDuration: min_duration,
72
+ clipRect: clip_rect)
73
+ end
74
+
75
+ def release_snapshot(snapshot_id:)
76
+ @devtools.send_cmd('LayerTree.releaseSnapshot',
77
+ snapshotId: snapshot_id)
78
+ end
79
+
80
+ def replay_snapshot(snapshot_id:, from_step: nil, to_step: nil, scale: nil)
81
+ @devtools.send_cmd('LayerTree.replaySnapshot',
82
+ snapshotId: snapshot_id,
83
+ fromStep: from_step,
84
+ toStep: to_step,
85
+ scale: scale)
86
+ end
87
+
88
+ def snapshot_command_log(snapshot_id:)
89
+ @devtools.send_cmd('LayerTree.snapshotCommandLog',
90
+ snapshotId: snapshot_id)
91
+ end
92
+
93
+ end # V88
94
+ end # LayerTree
95
+ end # DevTools
96
+ end # WebDriver
97
+ end # Selenium
@@ -0,0 +1,68 @@
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 WebDriver
23
+ class DevTools
24
+ def log
25
+ @log ||= V88::Log.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Log
30
+ EVENTS = {
31
+ entry_added: 'entryAdded',
32
+ }.freeze
33
+
34
+ def initialize(devtools)
35
+ @devtools = devtools
36
+ end
37
+
38
+ def on(event, &block)
39
+ event = EVENTS[event] if event.is_a?(Symbol)
40
+ @devtools.callbacks["Log.#{event}"] << block
41
+ end
42
+
43
+ def clear
44
+ @devtools.send_cmd('Log.clear')
45
+ end
46
+
47
+ def disable
48
+ @devtools.send_cmd('Log.disable')
49
+ end
50
+
51
+ def enable
52
+ @devtools.send_cmd('Log.enable')
53
+ end
54
+
55
+ def start_violations_report(config:)
56
+ @devtools.send_cmd('Log.startViolationsReport',
57
+ config: config)
58
+ end
59
+
60
+ def stop_violations_report
61
+ @devtools.send_cmd('Log.stopViolationsReport')
62
+ end
63
+
64
+ end # V88
65
+ end # Log
66
+ end # DevTools
67
+ end # WebDriver
68
+ end # Selenium
@@ -0,0 +1,59 @@
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 WebDriver
23
+ class DevTools
24
+ def media
25
+ @media ||= V88::Media.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Media
30
+ EVENTS = {
31
+ player_properties_changed: 'playerPropertiesChanged',
32
+ player_events_added: 'playerEventsAdded',
33
+ player_messages_logged: 'playerMessagesLogged',
34
+ player_errors_raised: 'playerErrorsRaised',
35
+ players_created: 'playersCreated',
36
+ }.freeze
37
+
38
+ def initialize(devtools)
39
+ @devtools = devtools
40
+ end
41
+
42
+ def on(event, &block)
43
+ event = EVENTS[event] if event.is_a?(Symbol)
44
+ @devtools.callbacks["Media.#{event}"] << block
45
+ end
46
+
47
+ def enable
48
+ @devtools.send_cmd('Media.enable')
49
+ end
50
+
51
+ def disable
52
+ @devtools.send_cmd('Media.disable')
53
+ end
54
+
55
+ end # V88
56
+ end # Media
57
+ end # DevTools
58
+ end # WebDriver
59
+ end # Selenium
@@ -0,0 +1,88 @@
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 WebDriver
23
+ class DevTools
24
+ def memory
25
+ @memory ||= V88::Memory.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Memory
30
+
31
+ def initialize(devtools)
32
+ @devtools = devtools
33
+ end
34
+
35
+ def on(event, &block)
36
+ event = EVENTS[event] if event.is_a?(Symbol)
37
+ @devtools.callbacks["Memory.#{event}"] << block
38
+ end
39
+
40
+ def get_dom_counters
41
+ @devtools.send_cmd('Memory.getDOMCounters')
42
+ end
43
+
44
+ def prepare_for_leak_detection
45
+ @devtools.send_cmd('Memory.prepareForLeakDetection')
46
+ end
47
+
48
+ def forcibly_purge_javascript_memory
49
+ @devtools.send_cmd('Memory.forciblyPurgeJavaScriptMemory')
50
+ end
51
+
52
+ def set_pressure_notifications_suppressed(suppressed:)
53
+ @devtools.send_cmd('Memory.setPressureNotificationsSuppressed',
54
+ suppressed: suppressed)
55
+ end
56
+
57
+ def simulate_pressure_notification(level:)
58
+ @devtools.send_cmd('Memory.simulatePressureNotification',
59
+ level: level)
60
+ end
61
+
62
+ def start_sampling(sampling_interval: nil, suppress_randomness: nil)
63
+ @devtools.send_cmd('Memory.startSampling',
64
+ samplingInterval: sampling_interval,
65
+ suppressRandomness: suppress_randomness)
66
+ end
67
+
68
+ def stop_sampling
69
+ @devtools.send_cmd('Memory.stopSampling')
70
+ end
71
+
72
+ def get_all_time_sampling_profile
73
+ @devtools.send_cmd('Memory.getAllTimeSamplingProfile')
74
+ end
75
+
76
+ def get_browser_sampling_profile
77
+ @devtools.send_cmd('Memory.getBrowserSamplingProfile')
78
+ end
79
+
80
+ def get_sampling_profile
81
+ @devtools.send_cmd('Memory.getSamplingProfile')
82
+ end
83
+
84
+ end # V88
85
+ end # Memory
86
+ end # DevTools
87
+ end # WebDriver
88
+ end # Selenium
@@ -0,0 +1,247 @@
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 WebDriver
23
+ class DevTools
24
+ def network
25
+ @network ||= V88::Network.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Network
30
+ EVENTS = {
31
+ data_received: 'dataReceived',
32
+ event_source_message_received: 'eventSourceMessageReceived',
33
+ loading_failed: 'loadingFailed',
34
+ loading_finished: 'loadingFinished',
35
+ request_intercepted: 'requestIntercepted',
36
+ request_served_from_cache: 'requestServedFromCache',
37
+ request_will_be_sent: 'requestWillBeSent',
38
+ resource_changed_priority: 'resourceChangedPriority',
39
+ signed_exchange_received: 'signedExchangeReceived',
40
+ response_received: 'responseReceived',
41
+ web_socket_closed: 'webSocketClosed',
42
+ web_socket_created: 'webSocketCreated',
43
+ web_socket_frame_error: 'webSocketFrameError',
44
+ web_socket_frame_received: 'webSocketFrameReceived',
45
+ web_socket_frame_sent: 'webSocketFrameSent',
46
+ web_socket_handshake_response_received: 'webSocketHandshakeResponseReceived',
47
+ web_socket_will_send_handshake_request: 'webSocketWillSendHandshakeRequest',
48
+ request_will_be_sent_extra_info: 'requestWillBeSentExtraInfo',
49
+ response_received_extra_info: 'responseReceivedExtraInfo',
50
+ }.freeze
51
+
52
+ def initialize(devtools)
53
+ @devtools = devtools
54
+ end
55
+
56
+ def on(event, &block)
57
+ event = EVENTS[event] if event.is_a?(Symbol)
58
+ @devtools.callbacks["Network.#{event}"] << block
59
+ end
60
+
61
+ def can_clear_browser_cache
62
+ @devtools.send_cmd('Network.canClearBrowserCache')
63
+ end
64
+
65
+ def can_clear_browser_cookies
66
+ @devtools.send_cmd('Network.canClearBrowserCookies')
67
+ end
68
+
69
+ def can_emulate_network_conditions
70
+ @devtools.send_cmd('Network.canEmulateNetworkConditions')
71
+ end
72
+
73
+ def clear_browser_cache
74
+ @devtools.send_cmd('Network.clearBrowserCache')
75
+ end
76
+
77
+ def clear_browser_cookies
78
+ @devtools.send_cmd('Network.clearBrowserCookies')
79
+ end
80
+
81
+ 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)
82
+ @devtools.send_cmd('Network.continueInterceptedRequest',
83
+ interceptionId: interception_id,
84
+ errorReason: error_reason,
85
+ rawResponse: raw_response,
86
+ url: url,
87
+ method: method,
88
+ postData: post_data,
89
+ headers: headers,
90
+ authChallengeResponse: auth_challenge_response)
91
+ end
92
+
93
+ def delete_cookies(name:, url: nil, domain: nil, path: nil)
94
+ @devtools.send_cmd('Network.deleteCookies',
95
+ name: name,
96
+ url: url,
97
+ domain: domain,
98
+ path: path)
99
+ end
100
+
101
+ def disable
102
+ @devtools.send_cmd('Network.disable')
103
+ end
104
+
105
+ def emulate_network_conditions(offline:, latency:, download_throughput:, upload_throughput:, connection_type: nil)
106
+ @devtools.send_cmd('Network.emulateNetworkConditions',
107
+ offline: offline,
108
+ latency: latency,
109
+ downloadThroughput: download_throughput,
110
+ uploadThroughput: upload_throughput,
111
+ connectionType: connection_type)
112
+ end
113
+
114
+ def enable(max_total_buffer_size: nil, max_resource_buffer_size: nil, max_post_data_size: nil)
115
+ @devtools.send_cmd('Network.enable',
116
+ maxTotalBufferSize: max_total_buffer_size,
117
+ maxResourceBufferSize: max_resource_buffer_size,
118
+ maxPostDataSize: max_post_data_size)
119
+ end
120
+
121
+ def get_all_cookies
122
+ @devtools.send_cmd('Network.getAllCookies')
123
+ end
124
+
125
+ def get_certificate(origin:)
126
+ @devtools.send_cmd('Network.getCertificate',
127
+ origin: origin)
128
+ end
129
+
130
+ def get_cookies(urls: nil)
131
+ @devtools.send_cmd('Network.getCookies',
132
+ urls: urls)
133
+ end
134
+
135
+ def get_response_body(request_id:)
136
+ @devtools.send_cmd('Network.getResponseBody',
137
+ requestId: request_id)
138
+ end
139
+
140
+ def get_request_post_data(request_id:)
141
+ @devtools.send_cmd('Network.getRequestPostData',
142
+ requestId: request_id)
143
+ end
144
+
145
+ def get_response_body_for_interception(interception_id:)
146
+ @devtools.send_cmd('Network.getResponseBodyForInterception',
147
+ interceptionId: interception_id)
148
+ end
149
+
150
+ def take_response_body_for_interception_as_stream(interception_id:)
151
+ @devtools.send_cmd('Network.takeResponseBodyForInterceptionAsStream',
152
+ interceptionId: interception_id)
153
+ end
154
+
155
+ def replay_xhr(request_id:)
156
+ @devtools.send_cmd('Network.replayXHR',
157
+ requestId: request_id)
158
+ end
159
+
160
+ def search_in_response_body(request_id:, query:, case_sensitive: nil, is_regex: nil)
161
+ @devtools.send_cmd('Network.searchInResponseBody',
162
+ requestId: request_id,
163
+ query: query,
164
+ caseSensitive: case_sensitive,
165
+ isRegex: is_regex)
166
+ end
167
+
168
+ def set_blocked_urls(urls:)
169
+ @devtools.send_cmd('Network.setBlockedURLs',
170
+ urls: urls)
171
+ end
172
+
173
+ def set_bypass_service_worker(bypass:)
174
+ @devtools.send_cmd('Network.setBypassServiceWorker',
175
+ bypass: bypass)
176
+ end
177
+
178
+ def set_cache_disabled(cache_disabled:)
179
+ @devtools.send_cmd('Network.setCacheDisabled',
180
+ cacheDisabled: cache_disabled)
181
+ end
182
+
183
+ def set_cookie(name:, value:, url: nil, domain: nil, path: nil, secure: nil, http_only: nil, same_site: nil, expires: nil, priority: nil)
184
+ @devtools.send_cmd('Network.setCookie',
185
+ name: name,
186
+ value: value,
187
+ url: url,
188
+ domain: domain,
189
+ path: path,
190
+ secure: secure,
191
+ httpOnly: http_only,
192
+ sameSite: same_site,
193
+ expires: expires,
194
+ priority: priority)
195
+ end
196
+
197
+ def set_cookies(cookies:)
198
+ @devtools.send_cmd('Network.setCookies',
199
+ cookies: cookies)
200
+ end
201
+
202
+ def set_data_size_limits_for_test(max_total_size:, max_resource_size:)
203
+ @devtools.send_cmd('Network.setDataSizeLimitsForTest',
204
+ maxTotalSize: max_total_size,
205
+ maxResourceSize: max_resource_size)
206
+ end
207
+
208
+ def set_extra_http_headers(headers:)
209
+ @devtools.send_cmd('Network.setExtraHTTPHeaders',
210
+ headers: headers)
211
+ end
212
+
213
+ def set_attach_debug_stack(enabled:)
214
+ @devtools.send_cmd('Network.setAttachDebugStack',
215
+ enabled: enabled)
216
+ end
217
+
218
+ def set_request_interception(patterns:)
219
+ @devtools.send_cmd('Network.setRequestInterception',
220
+ patterns: patterns)
221
+ end
222
+
223
+ def set_user_agent_override(user_agent:, accept_language: nil, platform: nil, user_agent_metadata: nil)
224
+ @devtools.send_cmd('Network.setUserAgentOverride',
225
+ userAgent: user_agent,
226
+ acceptLanguage: accept_language,
227
+ platform: platform,
228
+ userAgentMetadata: user_agent_metadata)
229
+ end
230
+
231
+ def get_security_isolation_status(frame_id: nil)
232
+ @devtools.send_cmd('Network.getSecurityIsolationStatus',
233
+ frameId: frame_id)
234
+ end
235
+
236
+ def load_network_resource(frame_id:, url:, options:)
237
+ @devtools.send_cmd('Network.loadNetworkResource',
238
+ frameId: frame_id,
239
+ url: url,
240
+ options: options)
241
+ end
242
+
243
+ end # V88
244
+ end # Network
245
+ end # DevTools
246
+ end # WebDriver
247
+ end # Selenium