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