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,44 @@
|
|
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 SystemInfo
|
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["SystemInfo.#{event}"] << block
|
32
|
+
end
|
33
|
+
|
34
|
+
def get_info
|
35
|
+
@devtools.send_cmd('SystemInfo.getInfo')
|
36
|
+
end
|
37
|
+
|
38
|
+
def get_process_info
|
39
|
+
@devtools.send_cmd('SystemInfo.getProcessInfo')
|
40
|
+
end
|
41
|
+
|
42
|
+
end # SystemInfo
|
43
|
+
end # DevTools
|
44
|
+
end # Selenium
|
@@ -0,0 +1,137 @@
|
|
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 Target
|
24
|
+
EVENTS = {
|
25
|
+
attached_to_target: 'attachedToTarget',
|
26
|
+
detached_from_target: 'detachedFromTarget',
|
27
|
+
received_message_from_target: 'receivedMessageFromTarget',
|
28
|
+
target_created: 'targetCreated',
|
29
|
+
target_destroyed: 'targetDestroyed',
|
30
|
+
target_crashed: 'targetCrashed',
|
31
|
+
target_info_changed: 'targetInfoChanged',
|
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["Target.#{event}"] << block
|
41
|
+
end
|
42
|
+
|
43
|
+
def activate_target(target_id:)
|
44
|
+
@devtools.send_cmd('Target.activateTarget',
|
45
|
+
targetId: target_id)
|
46
|
+
end
|
47
|
+
|
48
|
+
def attach_to_target(target_id:, flatten: nil)
|
49
|
+
@devtools.send_cmd('Target.attachToTarget',
|
50
|
+
targetId: target_id,
|
51
|
+
flatten: flatten)
|
52
|
+
end
|
53
|
+
|
54
|
+
def attach_to_browser_target
|
55
|
+
@devtools.send_cmd('Target.attachToBrowserTarget')
|
56
|
+
end
|
57
|
+
|
58
|
+
def close_target(target_id:)
|
59
|
+
@devtools.send_cmd('Target.closeTarget',
|
60
|
+
targetId: target_id)
|
61
|
+
end
|
62
|
+
|
63
|
+
def expose_dev_tools_protocol(target_id:, binding_name: nil)
|
64
|
+
@devtools.send_cmd('Target.exposeDevToolsProtocol',
|
65
|
+
targetId: target_id,
|
66
|
+
bindingName: binding_name)
|
67
|
+
end
|
68
|
+
|
69
|
+
def create_browser_context(dispose_on_detach: nil, proxy_server: nil, proxy_bypass_list: nil)
|
70
|
+
@devtools.send_cmd('Target.createBrowserContext',
|
71
|
+
disposeOnDetach: dispose_on_detach,
|
72
|
+
proxyServer: proxy_server,
|
73
|
+
proxyBypassList: proxy_bypass_list)
|
74
|
+
end
|
75
|
+
|
76
|
+
def get_browser_contexts
|
77
|
+
@devtools.send_cmd('Target.getBrowserContexts')
|
78
|
+
end
|
79
|
+
|
80
|
+
def create_target(url:, width: nil, height: nil, browser_context_id: nil, enable_begin_frame_control: nil, new_window: nil, background: nil)
|
81
|
+
@devtools.send_cmd('Target.createTarget',
|
82
|
+
url: url,
|
83
|
+
width: width,
|
84
|
+
height: height,
|
85
|
+
browserContextId: browser_context_id,
|
86
|
+
enableBeginFrameControl: enable_begin_frame_control,
|
87
|
+
newWindow: new_window,
|
88
|
+
background: background)
|
89
|
+
end
|
90
|
+
|
91
|
+
def detach_from_target(session_id: nil, target_id: nil)
|
92
|
+
@devtools.send_cmd('Target.detachFromTarget',
|
93
|
+
sessionId: session_id,
|
94
|
+
targetId: target_id)
|
95
|
+
end
|
96
|
+
|
97
|
+
def dispose_browser_context(browser_context_id:)
|
98
|
+
@devtools.send_cmd('Target.disposeBrowserContext',
|
99
|
+
browserContextId: browser_context_id)
|
100
|
+
end
|
101
|
+
|
102
|
+
def get_target_info(target_id: nil)
|
103
|
+
@devtools.send_cmd('Target.getTargetInfo',
|
104
|
+
targetId: target_id)
|
105
|
+
end
|
106
|
+
|
107
|
+
def get_targets
|
108
|
+
@devtools.send_cmd('Target.getTargets')
|
109
|
+
end
|
110
|
+
|
111
|
+
def send_message_to_target(message:, session_id: nil, target_id: nil)
|
112
|
+
@devtools.send_cmd('Target.sendMessageToTarget',
|
113
|
+
message: message,
|
114
|
+
sessionId: session_id,
|
115
|
+
targetId: target_id)
|
116
|
+
end
|
117
|
+
|
118
|
+
def set_auto_attach(auto_attach:, wait_for_debugger_on_start:, flatten: nil)
|
119
|
+
@devtools.send_cmd('Target.setAutoAttach',
|
120
|
+
autoAttach: auto_attach,
|
121
|
+
waitForDebuggerOnStart: wait_for_debugger_on_start,
|
122
|
+
flatten: flatten)
|
123
|
+
end
|
124
|
+
|
125
|
+
def set_discover_targets(discover:)
|
126
|
+
@devtools.send_cmd('Target.setDiscoverTargets',
|
127
|
+
discover: discover)
|
128
|
+
end
|
129
|
+
|
130
|
+
def set_remote_locations(locations:)
|
131
|
+
@devtools.send_cmd('Target.setRemoteLocations',
|
132
|
+
locations: locations)
|
133
|
+
end
|
134
|
+
|
135
|
+
end # Target
|
136
|
+
end # DevTools
|
137
|
+
end # Selenium
|
@@ -0,0 +1,49 @@
|
|
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 Tethering
|
24
|
+
EVENTS = {
|
25
|
+
accepted: 'accepted',
|
26
|
+
}.freeze
|
27
|
+
|
28
|
+
def initialize(devtools)
|
29
|
+
@devtools = devtools
|
30
|
+
end
|
31
|
+
|
32
|
+
def on(event, &block)
|
33
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
34
|
+
@devtools.callbacks["Tethering.#{event}"] << block
|
35
|
+
end
|
36
|
+
|
37
|
+
def bind(port:)
|
38
|
+
@devtools.send_cmd('Tethering.bind',
|
39
|
+
port: port)
|
40
|
+
end
|
41
|
+
|
42
|
+
def unbind(port:)
|
43
|
+
@devtools.send_cmd('Tethering.unbind',
|
44
|
+
port: port)
|
45
|
+
end
|
46
|
+
|
47
|
+
end # Tethering
|
48
|
+
end # DevTools
|
49
|
+
end # Selenium
|
@@ -0,0 +1,70 @@
|
|
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 Tracing
|
24
|
+
EVENTS = {
|
25
|
+
buffer_usage: 'bufferUsage',
|
26
|
+
data_collected: 'dataCollected',
|
27
|
+
tracing_complete: 'tracingComplete',
|
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["Tracing.#{event}"] << block
|
37
|
+
end
|
38
|
+
|
39
|
+
def _end
|
40
|
+
@devtools.send_cmd('Tracing.end')
|
41
|
+
end
|
42
|
+
|
43
|
+
def get_categories
|
44
|
+
@devtools.send_cmd('Tracing.getCategories')
|
45
|
+
end
|
46
|
+
|
47
|
+
def record_clock_sync_marker(sync_id:)
|
48
|
+
@devtools.send_cmd('Tracing.recordClockSyncMarker',
|
49
|
+
syncId: sync_id)
|
50
|
+
end
|
51
|
+
|
52
|
+
def request_memory_dump(deterministic: nil)
|
53
|
+
@devtools.send_cmd('Tracing.requestMemoryDump',
|
54
|
+
deterministic: deterministic)
|
55
|
+
end
|
56
|
+
|
57
|
+
def start(categories: nil, options: nil, buffer_usage_reporting_interval: nil, transfer_mode: nil, stream_format: nil, stream_compression: nil, trace_config: nil)
|
58
|
+
@devtools.send_cmd('Tracing.start',
|
59
|
+
categories: categories,
|
60
|
+
options: options,
|
61
|
+
bufferUsageReportingInterval: buffer_usage_reporting_interval,
|
62
|
+
transferMode: transfer_mode,
|
63
|
+
streamFormat: stream_format,
|
64
|
+
streamCompression: stream_compression,
|
65
|
+
traceConfig: trace_config)
|
66
|
+
end
|
67
|
+
|
68
|
+
end # Tracing
|
69
|
+
end # DevTools
|
70
|
+
end # Selenium
|
@@ -0,0 +1,64 @@
|
|
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 WebAudio
|
24
|
+
EVENTS = {
|
25
|
+
context_created: 'contextCreated',
|
26
|
+
context_will_be_destroyed: 'contextWillBeDestroyed',
|
27
|
+
context_changed: 'contextChanged',
|
28
|
+
audio_listener_created: 'audioListenerCreated',
|
29
|
+
audio_listener_will_be_destroyed: 'audioListenerWillBeDestroyed',
|
30
|
+
audio_node_created: 'audioNodeCreated',
|
31
|
+
audio_node_will_be_destroyed: 'audioNodeWillBeDestroyed',
|
32
|
+
audio_param_created: 'audioParamCreated',
|
33
|
+
audio_param_will_be_destroyed: 'audioParamWillBeDestroyed',
|
34
|
+
nodes_connected: 'nodesConnected',
|
35
|
+
nodes_disconnected: 'nodesDisconnected',
|
36
|
+
node_param_connected: 'nodeParamConnected',
|
37
|
+
node_param_disconnected: 'nodeParamDisconnected',
|
38
|
+
}.freeze
|
39
|
+
|
40
|
+
def initialize(devtools)
|
41
|
+
@devtools = devtools
|
42
|
+
end
|
43
|
+
|
44
|
+
def on(event, &block)
|
45
|
+
event = EVENTS[event] if event.is_a?(Symbol)
|
46
|
+
@devtools.callbacks["WebAudio.#{event}"] << block
|
47
|
+
end
|
48
|
+
|
49
|
+
def enable
|
50
|
+
@devtools.send_cmd('WebAudio.enable')
|
51
|
+
end
|
52
|
+
|
53
|
+
def disable
|
54
|
+
@devtools.send_cmd('WebAudio.disable')
|
55
|
+
end
|
56
|
+
|
57
|
+
def get_realtime_data(context_id:)
|
58
|
+
@devtools.send_cmd('WebAudio.getRealtimeData',
|
59
|
+
contextId: context_id)
|
60
|
+
end
|
61
|
+
|
62
|
+
end # WebAudio
|
63
|
+
end # DevTools
|
64
|
+
end # Selenium
|
@@ -0,0 +1,94 @@
|
|
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 WebAuthn
|
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["WebAuthn.#{event}"] << block
|
32
|
+
end
|
33
|
+
|
34
|
+
def enable
|
35
|
+
@devtools.send_cmd('WebAuthn.enable')
|
36
|
+
end
|
37
|
+
|
38
|
+
def disable
|
39
|
+
@devtools.send_cmd('WebAuthn.disable')
|
40
|
+
end
|
41
|
+
|
42
|
+
def add_virtual_authenticator(options:)
|
43
|
+
@devtools.send_cmd('WebAuthn.addVirtualAuthenticator',
|
44
|
+
options: options)
|
45
|
+
end
|
46
|
+
|
47
|
+
def remove_virtual_authenticator(authenticator_id:)
|
48
|
+
@devtools.send_cmd('WebAuthn.removeVirtualAuthenticator',
|
49
|
+
authenticatorId: authenticator_id)
|
50
|
+
end
|
51
|
+
|
52
|
+
def add_credential(authenticator_id:, credential:)
|
53
|
+
@devtools.send_cmd('WebAuthn.addCredential',
|
54
|
+
authenticatorId: authenticator_id,
|
55
|
+
credential: credential)
|
56
|
+
end
|
57
|
+
|
58
|
+
def get_credential(authenticator_id:, credential_id:)
|
59
|
+
@devtools.send_cmd('WebAuthn.getCredential',
|
60
|
+
authenticatorId: authenticator_id,
|
61
|
+
credentialId: credential_id)
|
62
|
+
end
|
63
|
+
|
64
|
+
def get_credentials(authenticator_id:)
|
65
|
+
@devtools.send_cmd('WebAuthn.getCredentials',
|
66
|
+
authenticatorId: authenticator_id)
|
67
|
+
end
|
68
|
+
|
69
|
+
def remove_credential(authenticator_id:, credential_id:)
|
70
|
+
@devtools.send_cmd('WebAuthn.removeCredential',
|
71
|
+
authenticatorId: authenticator_id,
|
72
|
+
credentialId: credential_id)
|
73
|
+
end
|
74
|
+
|
75
|
+
def clear_credentials(authenticator_id:)
|
76
|
+
@devtools.send_cmd('WebAuthn.clearCredentials',
|
77
|
+
authenticatorId: authenticator_id)
|
78
|
+
end
|
79
|
+
|
80
|
+
def set_user_verified(authenticator_id:, is_user_verified:)
|
81
|
+
@devtools.send_cmd('WebAuthn.setUserVerified',
|
82
|
+
authenticatorId: authenticator_id,
|
83
|
+
isUserVerified: is_user_verified)
|
84
|
+
end
|
85
|
+
|
86
|
+
def set_automatic_presence_simulation(authenticator_id:, enabled:)
|
87
|
+
@devtools.send_cmd('WebAuthn.setAutomaticPresenceSimulation',
|
88
|
+
authenticatorId: authenticator_id,
|
89
|
+
enabled: enabled)
|
90
|
+
end
|
91
|
+
|
92
|
+
end # WebAuthn
|
93
|
+
end # DevTools
|
94
|
+
end # Selenium
|