selenium-devtools 0.103.0 → 0.105.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.
Files changed (101) hide show
  1. checksums.yaml +4 -4
  2. data/lib/selenium/devtools/v101/web_authn.rb +2 -2
  3. data/lib/selenium/devtools/v102/web_authn.rb +2 -2
  4. data/lib/selenium/devtools/v104/accessibility.rb +91 -0
  5. data/lib/selenium/devtools/v104/animation.rb +94 -0
  6. data/lib/selenium/devtools/v104/audits.rb +62 -0
  7. data/lib/selenium/devtools/v104/background_service.rb +63 -0
  8. data/lib/selenium/devtools/v104/browser.rb +135 -0
  9. data/lib/selenium/devtools/v104/cache_storage.rb +69 -0
  10. data/lib/selenium/devtools/v104/cast.rb +71 -0
  11. data/lib/selenium/devtools/v104/console.rb +53 -0
  12. data/lib/selenium/devtools/v104/css.rb +194 -0
  13. data/lib/selenium/devtools/v104/database.rb +60 -0
  14. data/lib/selenium/devtools/v104/debugger.rb +221 -0
  15. data/lib/selenium/devtools/v104/device_orientation.rb +49 -0
  16. data/lib/selenium/devtools/v104/dom.rb +335 -0
  17. data/lib/selenium/devtools/v104/dom_debugger.rb +94 -0
  18. data/lib/selenium/devtools/v104/dom_snapshot.rb +63 -0
  19. data/lib/selenium/devtools/v104/dom_storage.rb +75 -0
  20. data/lib/selenium/devtools/v104/emulation.rb +206 -0
  21. data/lib/selenium/devtools/v104/event_breakpoints.rb +48 -0
  22. data/lib/selenium/devtools/v104/fetch.rb +103 -0
  23. data/lib/selenium/devtools/v104/headless_experimental.rb +57 -0
  24. data/lib/selenium/devtools/v104/heap_profiler.rb +107 -0
  25. data/lib/selenium/devtools/v104/indexed_db.rb +96 -0
  26. data/lib/selenium/devtools/v104/input.rb +168 -0
  27. data/lib/selenium/devtools/v104/inspector.rb +51 -0
  28. data/lib/selenium/devtools/v104/io.rb +55 -0
  29. data/lib/selenium/devtools/v104/layer_tree.rb +91 -0
  30. data/lib/selenium/devtools/v104/log.rb +62 -0
  31. data/lib/selenium/devtools/v104/media.rb +53 -0
  32. data/lib/selenium/devtools/v104/memory.rb +82 -0
  33. data/lib/selenium/devtools/v104/network.rb +264 -0
  34. data/lib/selenium/devtools/v104/overlay.rb +202 -0
  35. data/lib/selenium/devtools/v104/page.rb +394 -0
  36. data/lib/selenium/devtools/v104/performance.rb +59 -0
  37. data/lib/selenium/devtools/v104/performance_timeline.rb +46 -0
  38. data/lib/selenium/devtools/v104/profiler.rb +95 -0
  39. data/lib/selenium/devtools/v104/runtime.rb +201 -0
  40. data/lib/selenium/devtools/v104/schema.rb +42 -0
  41. data/lib/selenium/devtools/v104/security.rb +67 -0
  42. data/lib/selenium/devtools/v104/service_worker.rb +112 -0
  43. data/lib/selenium/devtools/v104/storage.rb +123 -0
  44. data/lib/selenium/devtools/v104/system_info.rb +46 -0
  45. data/lib/selenium/devtools/v104/target.rb +146 -0
  46. data/lib/selenium/devtools/v104/tethering.rb +51 -0
  47. data/lib/selenium/devtools/v104/tracing.rb +75 -0
  48. data/lib/selenium/devtools/v104/web_audio.rb +66 -0
  49. data/lib/selenium/devtools/v104/web_authn.rb +97 -0
  50. data/lib/selenium/devtools/v104.rb +1 -0
  51. data/lib/selenium/devtools/v105/accessibility.rb +91 -0
  52. data/lib/selenium/devtools/v105/animation.rb +94 -0
  53. data/lib/selenium/devtools/v105/audits.rb +62 -0
  54. data/lib/selenium/devtools/v105/background_service.rb +63 -0
  55. data/lib/selenium/devtools/v105/browser.rb +135 -0
  56. data/lib/selenium/devtools/v105/cache_storage.rb +69 -0
  57. data/lib/selenium/devtools/v105/cast.rb +71 -0
  58. data/lib/selenium/devtools/v105/console.rb +53 -0
  59. data/lib/selenium/devtools/v105/css.rb +201 -0
  60. data/lib/selenium/devtools/v105/database.rb +60 -0
  61. data/lib/selenium/devtools/v105/debugger.rb +232 -0
  62. data/lib/selenium/devtools/v105/device_orientation.rb +49 -0
  63. data/lib/selenium/devtools/v105/dom.rb +340 -0
  64. data/lib/selenium/devtools/v105/dom_debugger.rb +94 -0
  65. data/lib/selenium/devtools/v105/dom_snapshot.rb +63 -0
  66. data/lib/selenium/devtools/v105/dom_storage.rb +75 -0
  67. data/lib/selenium/devtools/v105/emulation.rb +206 -0
  68. data/lib/selenium/devtools/v105/event_breakpoints.rb +48 -0
  69. data/lib/selenium/devtools/v105/fetch.rb +103 -0
  70. data/lib/selenium/devtools/v105/headless_experimental.rb +57 -0
  71. data/lib/selenium/devtools/v105/heap_profiler.rb +107 -0
  72. data/lib/selenium/devtools/v105/indexed_db.rb +96 -0
  73. data/lib/selenium/devtools/v105/input.rb +168 -0
  74. data/lib/selenium/devtools/v105/inspector.rb +51 -0
  75. data/lib/selenium/devtools/v105/io.rb +55 -0
  76. data/lib/selenium/devtools/v105/layer_tree.rb +91 -0
  77. data/lib/selenium/devtools/v105/log.rb +62 -0
  78. data/lib/selenium/devtools/v105/media.rb +53 -0
  79. data/lib/selenium/devtools/v105/memory.rb +82 -0
  80. data/lib/selenium/devtools/v105/network.rb +264 -0
  81. data/lib/selenium/devtools/v105/overlay.rb +202 -0
  82. data/lib/selenium/devtools/v105/page.rb +394 -0
  83. data/lib/selenium/devtools/v105/performance.rb +59 -0
  84. data/lib/selenium/devtools/v105/performance_timeline.rb +46 -0
  85. data/lib/selenium/devtools/v105/profiler.rb +95 -0
  86. data/lib/selenium/devtools/v105/runtime.rb +201 -0
  87. data/lib/selenium/devtools/v105/schema.rb +42 -0
  88. data/lib/selenium/devtools/v105/security.rb +67 -0
  89. data/lib/selenium/devtools/v105/service_worker.rb +112 -0
  90. data/lib/selenium/devtools/v105/storage.rb +129 -0
  91. data/lib/selenium/devtools/v105/system_info.rb +46 -0
  92. data/lib/selenium/devtools/v105/target.rb +146 -0
  93. data/lib/selenium/devtools/v105/tethering.rb +51 -0
  94. data/lib/selenium/devtools/v105/tracing.rb +75 -0
  95. data/lib/selenium/devtools/v105/web_audio.rb +66 -0
  96. data/lib/selenium/devtools/v105/web_authn.rb +97 -0
  97. data/lib/selenium/devtools/v105.rb +1 -0
  98. data/lib/selenium/devtools/version.rb +1 -1
  99. data/lib/selenium/devtools.rb +0 -2
  100. data/selenium-devtools.gemspec +2 -0
  101. metadata +112 -4
@@ -0,0 +1,201 @@
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 V104
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, generate_web_driver_value: 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
+ generateWebDriverValue: generate_web_driver_value)
66
+ end
67
+
68
+ def compile_script(expression:, source_url:, persist_script:, execution_context_id: nil)
69
+ @devtools.send_cmd('Runtime.compileScript',
70
+ expression: expression,
71
+ sourceURL: source_url,
72
+ persistScript: persist_script,
73
+ executionContextId: execution_context_id)
74
+ end
75
+
76
+ def disable
77
+ @devtools.send_cmd('Runtime.disable')
78
+ end
79
+
80
+ def discard_console_entries
81
+ @devtools.send_cmd('Runtime.discardConsoleEntries')
82
+ end
83
+
84
+ def enable
85
+ @devtools.send_cmd('Runtime.enable')
86
+ end
87
+
88
+ 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, generate_web_driver_value: nil)
89
+ @devtools.send_cmd('Runtime.evaluate',
90
+ expression: expression,
91
+ objectGroup: object_group,
92
+ includeCommandLineAPI: include_command_line_api,
93
+ silent: silent,
94
+ contextId: context_id,
95
+ returnByValue: return_by_value,
96
+ generatePreview: generate_preview,
97
+ userGesture: user_gesture,
98
+ awaitPromise: await_promise,
99
+ throwOnSideEffect: throw_on_side_effect,
100
+ timeout: timeout,
101
+ disableBreaks: disable_breaks,
102
+ replMode: repl_mode,
103
+ allowUnsafeEvalBlockedByCSP: allow_unsafe_eval_blocked_by_csp,
104
+ uniqueContextId: unique_context_id,
105
+ generateWebDriverValue: generate_web_driver_value)
106
+ end
107
+
108
+ def get_isolate_id
109
+ @devtools.send_cmd('Runtime.getIsolateId')
110
+ end
111
+
112
+ def get_heap_usage
113
+ @devtools.send_cmd('Runtime.getHeapUsage')
114
+ end
115
+
116
+ def get_properties(object_id:, own_properties: nil, accessor_properties_only: nil, generate_preview: nil, non_indexed_properties_only: nil)
117
+ @devtools.send_cmd('Runtime.getProperties',
118
+ objectId: object_id,
119
+ ownProperties: own_properties,
120
+ accessorPropertiesOnly: accessor_properties_only,
121
+ generatePreview: generate_preview,
122
+ nonIndexedPropertiesOnly: non_indexed_properties_only)
123
+ end
124
+
125
+ def global_lexical_scope_names(execution_context_id: nil)
126
+ @devtools.send_cmd('Runtime.globalLexicalScopeNames',
127
+ executionContextId: execution_context_id)
128
+ end
129
+
130
+ def query_objects(prototype_object_id:, object_group: nil)
131
+ @devtools.send_cmd('Runtime.queryObjects',
132
+ prototypeObjectId: prototype_object_id,
133
+ objectGroup: object_group)
134
+ end
135
+
136
+ def release_object(object_id:)
137
+ @devtools.send_cmd('Runtime.releaseObject',
138
+ objectId: object_id)
139
+ end
140
+
141
+ def release_object_group(object_group:)
142
+ @devtools.send_cmd('Runtime.releaseObjectGroup',
143
+ objectGroup: object_group)
144
+ end
145
+
146
+ def run_if_waiting_for_debugger
147
+ @devtools.send_cmd('Runtime.runIfWaitingForDebugger')
148
+ end
149
+
150
+ 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)
151
+ @devtools.send_cmd('Runtime.runScript',
152
+ scriptId: script_id,
153
+ executionContextId: execution_context_id,
154
+ objectGroup: object_group,
155
+ silent: silent,
156
+ includeCommandLineAPI: include_command_line_api,
157
+ returnByValue: return_by_value,
158
+ generatePreview: generate_preview,
159
+ awaitPromise: await_promise)
160
+ end
161
+
162
+ def set_async_call_stack_depth(max_depth:)
163
+ @devtools.send_cmd('Runtime.setAsyncCallStackDepth',
164
+ maxDepth: max_depth)
165
+ end
166
+
167
+ def set_custom_object_formatter_enabled(enabled:)
168
+ @devtools.send_cmd('Runtime.setCustomObjectFormatterEnabled',
169
+ enabled: enabled)
170
+ end
171
+
172
+ def set_max_call_stack_size_to_capture(size:)
173
+ @devtools.send_cmd('Runtime.setMaxCallStackSizeToCapture',
174
+ size: size)
175
+ end
176
+
177
+ def terminate_execution
178
+ @devtools.send_cmd('Runtime.terminateExecution')
179
+ end
180
+
181
+ def add_binding(name:, execution_context_id: nil, execution_context_name: nil)
182
+ @devtools.send_cmd('Runtime.addBinding',
183
+ name: name,
184
+ executionContextId: execution_context_id,
185
+ executionContextName: execution_context_name)
186
+ end
187
+
188
+ def remove_binding(name:)
189
+ @devtools.send_cmd('Runtime.removeBinding',
190
+ name: name)
191
+ end
192
+
193
+ def get_exception_details(error_object_id:)
194
+ @devtools.send_cmd('Runtime.getExceptionDetails',
195
+ errorObjectId: error_object_id)
196
+ end
197
+
198
+ end # Runtime
199
+ end # V104
200
+ end # DevTools
201
+ 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 V104
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 # V104
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 V104
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 # V104
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 V104
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 # V104
111
+ end # DevTools
112
+ end # Selenium
@@ -0,0 +1,123 @@
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 V104
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 get_storage_key_for_frame(frame_id:)
43
+ @devtools.send_cmd('Storage.getStorageKeyForFrame',
44
+ frameId: frame_id)
45
+ end
46
+
47
+ def clear_data_for_origin(origin:, storage_types:)
48
+ @devtools.send_cmd('Storage.clearDataForOrigin',
49
+ origin: origin,
50
+ storageTypes: storage_types)
51
+ end
52
+
53
+ def get_cookies(browser_context_id: nil)
54
+ @devtools.send_cmd('Storage.getCookies',
55
+ browserContextId: browser_context_id)
56
+ end
57
+
58
+ def set_cookies(cookies:, browser_context_id: nil)
59
+ @devtools.send_cmd('Storage.setCookies',
60
+ cookies: cookies,
61
+ browserContextId: browser_context_id)
62
+ end
63
+
64
+ def clear_cookies(browser_context_id: nil)
65
+ @devtools.send_cmd('Storage.clearCookies',
66
+ browserContextId: browser_context_id)
67
+ end
68
+
69
+ def get_usage_and_quota(origin:)
70
+ @devtools.send_cmd('Storage.getUsageAndQuota',
71
+ origin: origin)
72
+ end
73
+
74
+ def override_quota_for_origin(origin:, quota_size: nil)
75
+ @devtools.send_cmd('Storage.overrideQuotaForOrigin',
76
+ origin: origin,
77
+ quotaSize: quota_size)
78
+ end
79
+
80
+ def track_cache_storage_for_origin(origin:)
81
+ @devtools.send_cmd('Storage.trackCacheStorageForOrigin',
82
+ origin: origin)
83
+ end
84
+
85
+ def track_indexed_db_for_origin(origin:)
86
+ @devtools.send_cmd('Storage.trackIndexedDBForOrigin',
87
+ origin: origin)
88
+ end
89
+
90
+ def untrack_cache_storage_for_origin(origin:)
91
+ @devtools.send_cmd('Storage.untrackCacheStorageForOrigin',
92
+ origin: origin)
93
+ end
94
+
95
+ def untrack_indexed_db_for_origin(origin:)
96
+ @devtools.send_cmd('Storage.untrackIndexedDBForOrigin',
97
+ origin: origin)
98
+ end
99
+
100
+ def get_trust_tokens
101
+ @devtools.send_cmd('Storage.getTrustTokens')
102
+ end
103
+
104
+ def clear_trust_tokens(issuer_origin:)
105
+ @devtools.send_cmd('Storage.clearTrustTokens',
106
+ issuerOrigin: issuer_origin)
107
+ end
108
+
109
+ def get_interest_group_details(owner_origin:, name:)
110
+ @devtools.send_cmd('Storage.getInterestGroupDetails',
111
+ ownerOrigin: owner_origin,
112
+ name: name)
113
+ end
114
+
115
+ def set_interest_group_tracking(enable:)
116
+ @devtools.send_cmd('Storage.setInterestGroupTracking',
117
+ enable: enable)
118
+ end
119
+
120
+ end # Storage
121
+ end # V104
122
+ end # DevTools
123
+ 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 V104
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 # V104
45
+ end # DevTools
46
+ end # Selenium