selenium-devtools 0.98.0 → 0.99.0
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/lib/selenium/devtools/v99/accessibility.rb +92 -0
- data/lib/selenium/devtools/v99/animation.rb +94 -0
- data/lib/selenium/devtools/v99/audits.rb +62 -0
- data/lib/selenium/devtools/v99/background_service.rb +63 -0
- data/lib/selenium/devtools/v99/browser.rb +135 -0
- data/lib/selenium/devtools/v99/cache_storage.rb +69 -0
- data/lib/selenium/devtools/v99/cast.rb +71 -0
- data/lib/selenium/devtools/v99/console.rb +53 -0
- data/lib/selenium/devtools/v99/css.rb +182 -0
- data/lib/selenium/devtools/v99/database.rb +60 -0
- data/lib/selenium/devtools/v99/debugger.rb +220 -0
- data/lib/selenium/devtools/v99/device_orientation.rb +49 -0
- data/lib/selenium/devtools/v99/dom.rb +334 -0
- data/lib/selenium/devtools/v99/dom_debugger.rb +94 -0
- data/lib/selenium/devtools/v99/dom_snapshot.rb +63 -0
- data/lib/selenium/devtools/v99/dom_storage.rb +75 -0
- data/lib/selenium/devtools/v99/emulation.rb +197 -0
- data/lib/selenium/devtools/v99/event_breakpoints.rb +48 -0
- data/lib/selenium/devtools/v99/fetch.rb +103 -0
- data/lib/selenium/devtools/v99/headless_experimental.rb +57 -0
- data/lib/selenium/devtools/v99/heap_profiler.rb +105 -0
- data/lib/selenium/devtools/v99/indexed_db.rb +96 -0
- data/lib/selenium/devtools/v99/input.rb +168 -0
- data/lib/selenium/devtools/v99/inspector.rb +51 -0
- data/lib/selenium/devtools/v99/io.rb +55 -0
- data/lib/selenium/devtools/v99/layer_tree.rb +91 -0
- data/lib/selenium/devtools/v99/log.rb +62 -0
- data/lib/selenium/devtools/v99/media.rb +53 -0
- data/lib/selenium/devtools/v99/memory.rb +82 -0
- data/lib/selenium/devtools/v99/network.rb +264 -0
- data/lib/selenium/devtools/v99/overlay.rb +202 -0
- data/lib/selenium/devtools/v99/page.rb +394 -0
- data/lib/selenium/devtools/v99/performance.rb +59 -0
- data/lib/selenium/devtools/v99/performance_timeline.rb +46 -0
- data/lib/selenium/devtools/v99/profiler.rb +95 -0
- data/lib/selenium/devtools/v99/runtime.rb +199 -0
- data/lib/selenium/devtools/v99/schema.rb +42 -0
- data/lib/selenium/devtools/v99/security.rb +67 -0
- data/lib/selenium/devtools/v99/service_worker.rb +112 -0
- data/lib/selenium/devtools/v99/storage.rb +118 -0
- data/lib/selenium/devtools/v99/system_info.rb +46 -0
- data/lib/selenium/devtools/v99/target.rb +146 -0
- data/lib/selenium/devtools/v99/tethering.rb +51 -0
- data/lib/selenium/devtools/v99/tracing.rb +75 -0
- data/lib/selenium/devtools/v99/web_audio.rb +66 -0
- data/lib/selenium/devtools/v99/web_authn.rb +96 -0
- data/lib/selenium/devtools/v99.rb +1 -0
- data/lib/selenium/devtools/version.rb +1 -1
- data/lib/selenium/devtools.rb +0 -2
- metadata +49 -2
@@ -0,0 +1,199 @@
|
|
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 V99
|
24
|
+
class Runtime
|
25
|
+
EVENTS = {
|
26
|
+
binding_called: 'bindingCalled',
|
27
|
+
console_api_called: 'consoleAPICalled',
|
28
|
+
exception_revoked: 'exceptionRevoked',
|
29
|
+
exception_thrown: 'exceptionThrown',
|
30
|
+
execution_context_created: 'executionContextCreated',
|
31
|
+
execution_context_destroyed: 'executionContextDestroyed',
|
32
|
+
execution_contexts_cleared: 'executionContextsCleared',
|
33
|
+
inspect_requested: 'inspectRequested',
|
34
|
+
}.freeze
|
35
|
+
|
36
|
+
def initialize(devtools)
|
37
|
+
@devtools = devtools
|
38
|
+
end
|
39
|
+
|
40
|
+
def on(event, &block)
|
41
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
42
|
+
@devtools.callbacks["Runtime.#{event}"] << block
|
43
|
+
end
|
44
|
+
|
45
|
+
def await_promise(promise_object_id:, return_by_value: nil, generate_preview: nil)
|
46
|
+
@devtools.send_cmd('Runtime.awaitPromise',
|
47
|
+
promiseObjectId: promise_object_id,
|
48
|
+
returnByValue: return_by_value,
|
49
|
+
generatePreview: generate_preview)
|
50
|
+
end
|
51
|
+
|
52
|
+
def call_function_on(function_declaration:, object_id: nil, arguments: nil, silent: nil, return_by_value: nil, generate_preview: nil, user_gesture: nil, await_promise: nil, execution_context_id: nil, object_group: nil, throw_on_side_effect: nil)
|
53
|
+
@devtools.send_cmd('Runtime.callFunctionOn',
|
54
|
+
functionDeclaration: function_declaration,
|
55
|
+
objectId: object_id,
|
56
|
+
arguments: arguments,
|
57
|
+
silent: silent,
|
58
|
+
returnByValue: return_by_value,
|
59
|
+
generatePreview: generate_preview,
|
60
|
+
userGesture: user_gesture,
|
61
|
+
awaitPromise: await_promise,
|
62
|
+
executionContextId: execution_context_id,
|
63
|
+
objectGroup: object_group,
|
64
|
+
throwOnSideEffect: throw_on_side_effect)
|
65
|
+
end
|
66
|
+
|
67
|
+
def compile_script(expression:, source_url:, persist_script:, execution_context_id: nil)
|
68
|
+
@devtools.send_cmd('Runtime.compileScript',
|
69
|
+
expression: expression,
|
70
|
+
sourceURL: source_url,
|
71
|
+
persistScript: persist_script,
|
72
|
+
executionContextId: execution_context_id)
|
73
|
+
end
|
74
|
+
|
75
|
+
def disable
|
76
|
+
@devtools.send_cmd('Runtime.disable')
|
77
|
+
end
|
78
|
+
|
79
|
+
def discard_console_entries
|
80
|
+
@devtools.send_cmd('Runtime.discardConsoleEntries')
|
81
|
+
end
|
82
|
+
|
83
|
+
def enable
|
84
|
+
@devtools.send_cmd('Runtime.enable')
|
85
|
+
end
|
86
|
+
|
87
|
+
def evaluate(expression:, object_group: nil, include_command_line_api: nil, silent: nil, context_id: nil, return_by_value: nil, generate_preview: nil, user_gesture: nil, await_promise: nil, throw_on_side_effect: nil, timeout: nil, disable_breaks: nil, repl_mode: nil, allow_unsafe_eval_blocked_by_csp: nil, unique_context_id: nil)
|
88
|
+
@devtools.send_cmd('Runtime.evaluate',
|
89
|
+
expression: expression,
|
90
|
+
objectGroup: object_group,
|
91
|
+
includeCommandLineAPI: include_command_line_api,
|
92
|
+
silent: silent,
|
93
|
+
contextId: context_id,
|
94
|
+
returnByValue: return_by_value,
|
95
|
+
generatePreview: generate_preview,
|
96
|
+
userGesture: user_gesture,
|
97
|
+
awaitPromise: await_promise,
|
98
|
+
throwOnSideEffect: throw_on_side_effect,
|
99
|
+
timeout: timeout,
|
100
|
+
disableBreaks: disable_breaks,
|
101
|
+
replMode: repl_mode,
|
102
|
+
allowUnsafeEvalBlockedByCSP: allow_unsafe_eval_blocked_by_csp,
|
103
|
+
uniqueContextId: unique_context_id)
|
104
|
+
end
|
105
|
+
|
106
|
+
def get_isolate_id
|
107
|
+
@devtools.send_cmd('Runtime.getIsolateId')
|
108
|
+
end
|
109
|
+
|
110
|
+
def get_heap_usage
|
111
|
+
@devtools.send_cmd('Runtime.getHeapUsage')
|
112
|
+
end
|
113
|
+
|
114
|
+
def get_properties(object_id:, own_properties: nil, accessor_properties_only: nil, generate_preview: nil, non_indexed_properties_only: nil)
|
115
|
+
@devtools.send_cmd('Runtime.getProperties',
|
116
|
+
objectId: object_id,
|
117
|
+
ownProperties: own_properties,
|
118
|
+
accessorPropertiesOnly: accessor_properties_only,
|
119
|
+
generatePreview: generate_preview,
|
120
|
+
nonIndexedPropertiesOnly: non_indexed_properties_only)
|
121
|
+
end
|
122
|
+
|
123
|
+
def global_lexical_scope_names(execution_context_id: nil)
|
124
|
+
@devtools.send_cmd('Runtime.globalLexicalScopeNames',
|
125
|
+
executionContextId: execution_context_id)
|
126
|
+
end
|
127
|
+
|
128
|
+
def query_objects(prototype_object_id:, object_group: nil)
|
129
|
+
@devtools.send_cmd('Runtime.queryObjects',
|
130
|
+
prototypeObjectId: prototype_object_id,
|
131
|
+
objectGroup: object_group)
|
132
|
+
end
|
133
|
+
|
134
|
+
def release_object(object_id:)
|
135
|
+
@devtools.send_cmd('Runtime.releaseObject',
|
136
|
+
objectId: object_id)
|
137
|
+
end
|
138
|
+
|
139
|
+
def release_object_group(object_group:)
|
140
|
+
@devtools.send_cmd('Runtime.releaseObjectGroup',
|
141
|
+
objectGroup: object_group)
|
142
|
+
end
|
143
|
+
|
144
|
+
def run_if_waiting_for_debugger
|
145
|
+
@devtools.send_cmd('Runtime.runIfWaitingForDebugger')
|
146
|
+
end
|
147
|
+
|
148
|
+
def run_script(script_id:, execution_context_id: nil, object_group: nil, silent: nil, include_command_line_api: nil, return_by_value: nil, generate_preview: nil, await_promise: nil)
|
149
|
+
@devtools.send_cmd('Runtime.runScript',
|
150
|
+
scriptId: script_id,
|
151
|
+
executionContextId: execution_context_id,
|
152
|
+
objectGroup: object_group,
|
153
|
+
silent: silent,
|
154
|
+
includeCommandLineAPI: include_command_line_api,
|
155
|
+
returnByValue: return_by_value,
|
156
|
+
generatePreview: generate_preview,
|
157
|
+
awaitPromise: await_promise)
|
158
|
+
end
|
159
|
+
|
160
|
+
def set_async_call_stack_depth(max_depth:)
|
161
|
+
@devtools.send_cmd('Runtime.setAsyncCallStackDepth',
|
162
|
+
maxDepth: max_depth)
|
163
|
+
end
|
164
|
+
|
165
|
+
def set_custom_object_formatter_enabled(enabled:)
|
166
|
+
@devtools.send_cmd('Runtime.setCustomObjectFormatterEnabled',
|
167
|
+
enabled: enabled)
|
168
|
+
end
|
169
|
+
|
170
|
+
def set_max_call_stack_size_to_capture(size:)
|
171
|
+
@devtools.send_cmd('Runtime.setMaxCallStackSizeToCapture',
|
172
|
+
size: size)
|
173
|
+
end
|
174
|
+
|
175
|
+
def terminate_execution
|
176
|
+
@devtools.send_cmd('Runtime.terminateExecution')
|
177
|
+
end
|
178
|
+
|
179
|
+
def add_binding(name:, execution_context_id: nil, execution_context_name: nil)
|
180
|
+
@devtools.send_cmd('Runtime.addBinding',
|
181
|
+
name: name,
|
182
|
+
executionContextId: execution_context_id,
|
183
|
+
executionContextName: execution_context_name)
|
184
|
+
end
|
185
|
+
|
186
|
+
def remove_binding(name:)
|
187
|
+
@devtools.send_cmd('Runtime.removeBinding',
|
188
|
+
name: name)
|
189
|
+
end
|
190
|
+
|
191
|
+
def get_exception_details(error_object_id:)
|
192
|
+
@devtools.send_cmd('Runtime.getExceptionDetails',
|
193
|
+
errorObjectId: error_object_id)
|
194
|
+
end
|
195
|
+
|
196
|
+
end # Runtime
|
197
|
+
end # V99
|
198
|
+
end # DevTools
|
199
|
+
end # Selenium
|
@@ -0,0 +1,42 @@
|
|
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 V99
|
24
|
+
class Schema
|
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["Schema.#{event}"] << block
|
33
|
+
end
|
34
|
+
|
35
|
+
def get_domains
|
36
|
+
@devtools.send_cmd('Schema.getDomains')
|
37
|
+
end
|
38
|
+
|
39
|
+
end # Schema
|
40
|
+
end # V99
|
41
|
+
end # DevTools
|
42
|
+
end # Selenium
|
@@ -0,0 +1,67 @@
|
|
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 V99
|
24
|
+
class Security
|
25
|
+
EVENTS = {
|
26
|
+
certificate_error: 'certificateError',
|
27
|
+
visible_security_state_changed: 'visibleSecurityStateChanged',
|
28
|
+
security_state_changed: 'securityStateChanged',
|
29
|
+
}.freeze
|
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["Security.#{event}"] << block
|
38
|
+
end
|
39
|
+
|
40
|
+
def disable
|
41
|
+
@devtools.send_cmd('Security.disable')
|
42
|
+
end
|
43
|
+
|
44
|
+
def enable
|
45
|
+
@devtools.send_cmd('Security.enable')
|
46
|
+
end
|
47
|
+
|
48
|
+
def set_ignore_certificate_errors(ignore:)
|
49
|
+
@devtools.send_cmd('Security.setIgnoreCertificateErrors',
|
50
|
+
ignore: ignore)
|
51
|
+
end
|
52
|
+
|
53
|
+
def handle_certificate_error(event_id:, action:)
|
54
|
+
@devtools.send_cmd('Security.handleCertificateError',
|
55
|
+
eventId: event_id,
|
56
|
+
action: action)
|
57
|
+
end
|
58
|
+
|
59
|
+
def set_override_certificate_errors(override:)
|
60
|
+
@devtools.send_cmd('Security.setOverrideCertificateErrors',
|
61
|
+
override: override)
|
62
|
+
end
|
63
|
+
|
64
|
+
end # Security
|
65
|
+
end # V99
|
66
|
+
end # DevTools
|
67
|
+
end # Selenium
|
@@ -0,0 +1,112 @@
|
|
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 V99
|
24
|
+
class ServiceWorker
|
25
|
+
EVENTS = {
|
26
|
+
worker_error_reported: 'workerErrorReported',
|
27
|
+
worker_registration_updated: 'workerRegistrationUpdated',
|
28
|
+
worker_version_updated: 'workerVersionUpdated',
|
29
|
+
}.freeze
|
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["ServiceWorker.#{event}"] << block
|
38
|
+
end
|
39
|
+
|
40
|
+
def deliver_push_message(origin:, registration_id:, data:)
|
41
|
+
@devtools.send_cmd('ServiceWorker.deliverPushMessage',
|
42
|
+
origin: origin,
|
43
|
+
registrationId: registration_id,
|
44
|
+
data: data)
|
45
|
+
end
|
46
|
+
|
47
|
+
def disable
|
48
|
+
@devtools.send_cmd('ServiceWorker.disable')
|
49
|
+
end
|
50
|
+
|
51
|
+
def dispatch_sync_event(origin:, registration_id:, tag:, last_chance:)
|
52
|
+
@devtools.send_cmd('ServiceWorker.dispatchSyncEvent',
|
53
|
+
origin: origin,
|
54
|
+
registrationId: registration_id,
|
55
|
+
tag: tag,
|
56
|
+
lastChance: last_chance)
|
57
|
+
end
|
58
|
+
|
59
|
+
def dispatch_periodic_sync_event(origin:, registration_id:, tag:)
|
60
|
+
@devtools.send_cmd('ServiceWorker.dispatchPeriodicSyncEvent',
|
61
|
+
origin: origin,
|
62
|
+
registrationId: registration_id,
|
63
|
+
tag: tag)
|
64
|
+
end
|
65
|
+
|
66
|
+
def enable
|
67
|
+
@devtools.send_cmd('ServiceWorker.enable')
|
68
|
+
end
|
69
|
+
|
70
|
+
def inspect_worker(version_id:)
|
71
|
+
@devtools.send_cmd('ServiceWorker.inspectWorker',
|
72
|
+
versionId: version_id)
|
73
|
+
end
|
74
|
+
|
75
|
+
def set_force_update_on_page_load(force_update_on_page_load:)
|
76
|
+
@devtools.send_cmd('ServiceWorker.setForceUpdateOnPageLoad',
|
77
|
+
forceUpdateOnPageLoad: force_update_on_page_load)
|
78
|
+
end
|
79
|
+
|
80
|
+
def skip_waiting(scope_url:)
|
81
|
+
@devtools.send_cmd('ServiceWorker.skipWaiting',
|
82
|
+
scopeURL: scope_url)
|
83
|
+
end
|
84
|
+
|
85
|
+
def start_worker(scope_url:)
|
86
|
+
@devtools.send_cmd('ServiceWorker.startWorker',
|
87
|
+
scopeURL: scope_url)
|
88
|
+
end
|
89
|
+
|
90
|
+
def stop_all_workers
|
91
|
+
@devtools.send_cmd('ServiceWorker.stopAllWorkers')
|
92
|
+
end
|
93
|
+
|
94
|
+
def stop_worker(version_id:)
|
95
|
+
@devtools.send_cmd('ServiceWorker.stopWorker',
|
96
|
+
versionId: version_id)
|
97
|
+
end
|
98
|
+
|
99
|
+
def unregister(scope_url:)
|
100
|
+
@devtools.send_cmd('ServiceWorker.unregister',
|
101
|
+
scopeURL: scope_url)
|
102
|
+
end
|
103
|
+
|
104
|
+
def update_registration(scope_url:)
|
105
|
+
@devtools.send_cmd('ServiceWorker.updateRegistration',
|
106
|
+
scopeURL: scope_url)
|
107
|
+
end
|
108
|
+
|
109
|
+
end # ServiceWorker
|
110
|
+
end # V99
|
111
|
+
end # DevTools
|
112
|
+
end # Selenium
|
@@ -0,0 +1,118 @@
|
|
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 V99
|
24
|
+
class Storage
|
25
|
+
EVENTS = {
|
26
|
+
cache_storage_content_updated: 'cacheStorageContentUpdated',
|
27
|
+
cache_storage_list_updated: 'cacheStorageListUpdated',
|
28
|
+
indexed_db_content_updated: 'indexedDBContentUpdated',
|
29
|
+
indexed_db_list_updated: 'indexedDBListUpdated',
|
30
|
+
interest_group_accessed: 'interestGroupAccessed',
|
31
|
+
}.freeze
|
32
|
+
|
33
|
+
def initialize(devtools)
|
34
|
+
@devtools = devtools
|
35
|
+
end
|
36
|
+
|
37
|
+
def on(event, &block)
|
38
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
39
|
+
@devtools.callbacks["Storage.#{event}"] << block
|
40
|
+
end
|
41
|
+
|
42
|
+
def clear_data_for_origin(origin:, storage_types:)
|
43
|
+
@devtools.send_cmd('Storage.clearDataForOrigin',
|
44
|
+
origin: origin,
|
45
|
+
storageTypes: storage_types)
|
46
|
+
end
|
47
|
+
|
48
|
+
def get_cookies(browser_context_id: nil)
|
49
|
+
@devtools.send_cmd('Storage.getCookies',
|
50
|
+
browserContextId: browser_context_id)
|
51
|
+
end
|
52
|
+
|
53
|
+
def set_cookies(cookies:, browser_context_id: nil)
|
54
|
+
@devtools.send_cmd('Storage.setCookies',
|
55
|
+
cookies: cookies,
|
56
|
+
browserContextId: browser_context_id)
|
57
|
+
end
|
58
|
+
|
59
|
+
def clear_cookies(browser_context_id: nil)
|
60
|
+
@devtools.send_cmd('Storage.clearCookies',
|
61
|
+
browserContextId: browser_context_id)
|
62
|
+
end
|
63
|
+
|
64
|
+
def get_usage_and_quota(origin:)
|
65
|
+
@devtools.send_cmd('Storage.getUsageAndQuota',
|
66
|
+
origin: origin)
|
67
|
+
end
|
68
|
+
|
69
|
+
def override_quota_for_origin(origin:, quota_size: nil)
|
70
|
+
@devtools.send_cmd('Storage.overrideQuotaForOrigin',
|
71
|
+
origin: origin,
|
72
|
+
quotaSize: quota_size)
|
73
|
+
end
|
74
|
+
|
75
|
+
def track_cache_storage_for_origin(origin:)
|
76
|
+
@devtools.send_cmd('Storage.trackCacheStorageForOrigin',
|
77
|
+
origin: origin)
|
78
|
+
end
|
79
|
+
|
80
|
+
def track_indexed_db_for_origin(origin:)
|
81
|
+
@devtools.send_cmd('Storage.trackIndexedDBForOrigin',
|
82
|
+
origin: origin)
|
83
|
+
end
|
84
|
+
|
85
|
+
def untrack_cache_storage_for_origin(origin:)
|
86
|
+
@devtools.send_cmd('Storage.untrackCacheStorageForOrigin',
|
87
|
+
origin: origin)
|
88
|
+
end
|
89
|
+
|
90
|
+
def untrack_indexed_db_for_origin(origin:)
|
91
|
+
@devtools.send_cmd('Storage.untrackIndexedDBForOrigin',
|
92
|
+
origin: origin)
|
93
|
+
end
|
94
|
+
|
95
|
+
def get_trust_tokens
|
96
|
+
@devtools.send_cmd('Storage.getTrustTokens')
|
97
|
+
end
|
98
|
+
|
99
|
+
def clear_trust_tokens(issuer_origin:)
|
100
|
+
@devtools.send_cmd('Storage.clearTrustTokens',
|
101
|
+
issuerOrigin: issuer_origin)
|
102
|
+
end
|
103
|
+
|
104
|
+
def get_interest_group_details(owner_origin:, name:)
|
105
|
+
@devtools.send_cmd('Storage.getInterestGroupDetails',
|
106
|
+
ownerOrigin: owner_origin,
|
107
|
+
name: name)
|
108
|
+
end
|
109
|
+
|
110
|
+
def set_interest_group_tracking(enable:)
|
111
|
+
@devtools.send_cmd('Storage.setInterestGroupTracking',
|
112
|
+
enable: enable)
|
113
|
+
end
|
114
|
+
|
115
|
+
end # Storage
|
116
|
+
end # V99
|
117
|
+
end # DevTools
|
118
|
+
end # Selenium
|
@@ -0,0 +1,46 @@
|
|
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 V99
|
24
|
+
class SystemInfo
|
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["SystemInfo.#{event}"] << block
|
33
|
+
end
|
34
|
+
|
35
|
+
def get_info
|
36
|
+
@devtools.send_cmd('SystemInfo.getInfo')
|
37
|
+
end
|
38
|
+
|
39
|
+
def get_process_info
|
40
|
+
@devtools.send_cmd('SystemInfo.getProcessInfo')
|
41
|
+
end
|
42
|
+
|
43
|
+
end # SystemInfo
|
44
|
+
end # V99
|
45
|
+
end # DevTools
|
46
|
+
end # Selenium
|