selenium-devtools 0.0.1.alpha

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 (49) hide show
  1. checksums.yaml +7 -0
  2. data/lib/selenium/devtools/v88.rb +1 -0
  3. data/lib/selenium/devtools/v88/accessibility.rb +73 -0
  4. data/lib/selenium/devtools/v88/animation.rb +100 -0
  5. data/lib/selenium/devtools/v88/application_cache.rb +66 -0
  6. data/lib/selenium/devtools/v88/audits.rb +63 -0
  7. data/lib/selenium/devtools/v88/background_service.rb +69 -0
  8. data/lib/selenium/devtools/v88/browser.rb +130 -0
  9. data/lib/selenium/devtools/v88/cache_storage.rb +75 -0
  10. data/lib/selenium/devtools/v88/cast.rb +72 -0
  11. data/lib/selenium/devtools/v88/console.rb +59 -0
  12. data/lib/selenium/devtools/v88/css.rb +181 -0
  13. data/lib/selenium/devtools/v88/database.rb +66 -0
  14. data/lib/selenium/devtools/v88/debugger.rb +233 -0
  15. data/lib/selenium/devtools/v88/device_orientation.rb +55 -0
  16. data/lib/selenium/devtools/v88/dom.rb +329 -0
  17. data/lib/selenium/devtools/v88/dom_debugger.rb +95 -0
  18. data/lib/selenium/devtools/v88/dom_snapshot.rb +67 -0
  19. data/lib/selenium/devtools/v88/dom_storage.rb +81 -0
  20. data/lib/selenium/devtools/v88/emulation.rb +198 -0
  21. data/lib/selenium/devtools/v88/fetch.rb +99 -0
  22. data/lib/selenium/devtools/v88/headless_experimental.rb +63 -0
  23. data/lib/selenium/devtools/v88/heap_profiler.rb +109 -0
  24. data/lib/selenium/devtools/v88/indexed_db.rb +102 -0
  25. data/lib/selenium/devtools/v88/input.rb +148 -0
  26. data/lib/selenium/devtools/v88/inspector.rb +57 -0
  27. data/lib/selenium/devtools/v88/io.rb +61 -0
  28. data/lib/selenium/devtools/v88/layer_tree.rb +97 -0
  29. data/lib/selenium/devtools/v88/log.rb +68 -0
  30. data/lib/selenium/devtools/v88/media.rb +59 -0
  31. data/lib/selenium/devtools/v88/memory.rb +88 -0
  32. data/lib/selenium/devtools/v88/network.rb +247 -0
  33. data/lib/selenium/devtools/v88/overlay.rb +183 -0
  34. data/lib/selenium/devtools/v88/page.rb +376 -0
  35. data/lib/selenium/devtools/v88/performance.rb +65 -0
  36. data/lib/selenium/devtools/v88/profiler.rb +125 -0
  37. data/lib/selenium/devtools/v88/runtime.rb +197 -0
  38. data/lib/selenium/devtools/v88/schema.rb +48 -0
  39. data/lib/selenium/devtools/v88/security.rb +73 -0
  40. data/lib/selenium/devtools/v88/service_worker.rb +118 -0
  41. data/lib/selenium/devtools/v88/storage.rb +103 -0
  42. data/lib/selenium/devtools/v88/system_info.rb +52 -0
  43. data/lib/selenium/devtools/v88/target.rb +145 -0
  44. data/lib/selenium/devtools/v88/tethering.rb +57 -0
  45. data/lib/selenium/devtools/v88/tracing.rb +79 -0
  46. data/lib/selenium/devtools/v88/web_audio.rb +72 -0
  47. data/lib/selenium/devtools/v88/web_authn.rb +102 -0
  48. data/lib/selenium/devtools/version.rb +24 -0
  49. metadata +99 -0
@@ -0,0 +1,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 WebDriver
23
+ class DevTools
24
+ def service_worker
25
+ @service_worker ||= V88::ServiceWorker.new(self)
26
+ end
27
+
28
+ module V88
29
+ class ServiceWorker
30
+ EVENTS = {
31
+ worker_error_reported: 'workerErrorReported',
32
+ worker_registration_updated: 'workerRegistrationUpdated',
33
+ worker_version_updated: 'workerVersionUpdated',
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["ServiceWorker.#{event}"] << block
43
+ end
44
+
45
+ def deliver_push_message(origin:, registration_id:, data:)
46
+ @devtools.send_cmd('ServiceWorker.deliverPushMessage',
47
+ origin: origin,
48
+ registrationId: registration_id,
49
+ data: data)
50
+ end
51
+
52
+ def disable
53
+ @devtools.send_cmd('ServiceWorker.disable')
54
+ end
55
+
56
+ def dispatch_sync_event(origin:, registration_id:, tag:, last_chance:)
57
+ @devtools.send_cmd('ServiceWorker.dispatchSyncEvent',
58
+ origin: origin,
59
+ registrationId: registration_id,
60
+ tag: tag,
61
+ lastChance: last_chance)
62
+ end
63
+
64
+ def dispatch_periodic_sync_event(origin:, registration_id:, tag:)
65
+ @devtools.send_cmd('ServiceWorker.dispatchPeriodicSyncEvent',
66
+ origin: origin,
67
+ registrationId: registration_id,
68
+ tag: tag)
69
+ end
70
+
71
+ def enable
72
+ @devtools.send_cmd('ServiceWorker.enable')
73
+ end
74
+
75
+ def inspect_worker(version_id:)
76
+ @devtools.send_cmd('ServiceWorker.inspectWorker',
77
+ versionId: version_id)
78
+ end
79
+
80
+ def set_force_update_on_page_load(force_update_on_page_load:)
81
+ @devtools.send_cmd('ServiceWorker.setForceUpdateOnPageLoad',
82
+ forceUpdateOnPageLoad: force_update_on_page_load)
83
+ end
84
+
85
+ def skip_waiting(scope_url:)
86
+ @devtools.send_cmd('ServiceWorker.skipWaiting',
87
+ scopeURL: scope_url)
88
+ end
89
+
90
+ def start_worker(scope_url:)
91
+ @devtools.send_cmd('ServiceWorker.startWorker',
92
+ scopeURL: scope_url)
93
+ end
94
+
95
+ def stop_all_workers
96
+ @devtools.send_cmd('ServiceWorker.stopAllWorkers')
97
+ end
98
+
99
+ def stop_worker(version_id:)
100
+ @devtools.send_cmd('ServiceWorker.stopWorker',
101
+ versionId: version_id)
102
+ end
103
+
104
+ def unregister(scope_url:)
105
+ @devtools.send_cmd('ServiceWorker.unregister',
106
+ scopeURL: scope_url)
107
+ end
108
+
109
+ def update_registration(scope_url:)
110
+ @devtools.send_cmd('ServiceWorker.updateRegistration',
111
+ scopeURL: scope_url)
112
+ end
113
+
114
+ end # V88
115
+ end # ServiceWorker
116
+ end # DevTools
117
+ end # WebDriver
118
+ end # Selenium
@@ -0,0 +1,103 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module WebDriver
23
+ class DevTools
24
+ def storage
25
+ @storage ||= V88::Storage.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Storage
30
+ EVENTS = {
31
+ cache_storage_content_updated: 'cacheStorageContentUpdated',
32
+ cache_storage_list_updated: 'cacheStorageListUpdated',
33
+ indexed_db_content_updated: 'indexedDBContentUpdated',
34
+ indexed_db_list_updated: 'indexedDBListUpdated',
35
+ }.freeze
36
+
37
+ def initialize(devtools)
38
+ @devtools = devtools
39
+ end
40
+
41
+ def on(event, &block)
42
+ event = EVENTS[event] if event.is_a?(Symbol)
43
+ @devtools.callbacks["Storage.#{event}"] << block
44
+ end
45
+
46
+ def clear_data_for_origin(origin:, storage_types:)
47
+ @devtools.send_cmd('Storage.clearDataForOrigin',
48
+ origin: origin,
49
+ storageTypes: storage_types)
50
+ end
51
+
52
+ def get_cookies(browser_context_id: nil)
53
+ @devtools.send_cmd('Storage.getCookies',
54
+ browserContextId: browser_context_id)
55
+ end
56
+
57
+ def set_cookies(cookies:, browser_context_id: nil)
58
+ @devtools.send_cmd('Storage.setCookies',
59
+ cookies: cookies,
60
+ browserContextId: browser_context_id)
61
+ end
62
+
63
+ def clear_cookies(browser_context_id: nil)
64
+ @devtools.send_cmd('Storage.clearCookies',
65
+ browserContextId: browser_context_id)
66
+ end
67
+
68
+ def get_usage_and_quota(origin:)
69
+ @devtools.send_cmd('Storage.getUsageAndQuota',
70
+ origin: origin)
71
+ end
72
+
73
+ def override_quota_for_origin(origin:, quota_size: nil)
74
+ @devtools.send_cmd('Storage.overrideQuotaForOrigin',
75
+ origin: origin,
76
+ quotaSize: quota_size)
77
+ end
78
+
79
+ def track_cache_storage_for_origin(origin:)
80
+ @devtools.send_cmd('Storage.trackCacheStorageForOrigin',
81
+ origin: origin)
82
+ end
83
+
84
+ def track_indexed_db_for_origin(origin:)
85
+ @devtools.send_cmd('Storage.trackIndexedDBForOrigin',
86
+ origin: origin)
87
+ end
88
+
89
+ def untrack_cache_storage_for_origin(origin:)
90
+ @devtools.send_cmd('Storage.untrackCacheStorageForOrigin',
91
+ origin: origin)
92
+ end
93
+
94
+ def untrack_indexed_db_for_origin(origin:)
95
+ @devtools.send_cmd('Storage.untrackIndexedDBForOrigin',
96
+ origin: origin)
97
+ end
98
+
99
+ end # V88
100
+ end # Storage
101
+ end # DevTools
102
+ end # WebDriver
103
+ end # Selenium
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module WebDriver
23
+ class DevTools
24
+ def system_info
25
+ @system_info ||= V88::SystemInfo.new(self)
26
+ end
27
+
28
+ module V88
29
+ class SystemInfo
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["SystemInfo.#{event}"] << block
38
+ end
39
+
40
+ def get_info
41
+ @devtools.send_cmd('SystemInfo.getInfo')
42
+ end
43
+
44
+ def get_process_info
45
+ @devtools.send_cmd('SystemInfo.getProcessInfo')
46
+ end
47
+
48
+ end # V88
49
+ end # SystemInfo
50
+ end # DevTools
51
+ end # WebDriver
52
+ end # Selenium
@@ -0,0 +1,145 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module WebDriver
23
+ class DevTools
24
+ def target
25
+ @target ||= V88::Target.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Target
30
+ EVENTS = {
31
+ attached_to_target: 'attachedToTarget',
32
+ detached_from_target: 'detachedFromTarget',
33
+ received_message_from_target: 'receivedMessageFromTarget',
34
+ target_created: 'targetCreated',
35
+ target_destroyed: 'targetDestroyed',
36
+ target_crashed: 'targetCrashed',
37
+ target_info_changed: 'targetInfoChanged',
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["Target.#{event}"] << block
47
+ end
48
+
49
+ def activate_target(target_id:)
50
+ @devtools.send_cmd('Target.activateTarget',
51
+ targetId: target_id)
52
+ end
53
+
54
+ def attach_to_target(target_id:, flatten: nil)
55
+ @devtools.send_cmd('Target.attachToTarget',
56
+ targetId: target_id,
57
+ flatten: flatten)
58
+ end
59
+
60
+ def attach_to_browser_target
61
+ @devtools.send_cmd('Target.attachToBrowserTarget')
62
+ end
63
+
64
+ def close_target(target_id:)
65
+ @devtools.send_cmd('Target.closeTarget',
66
+ targetId: target_id)
67
+ end
68
+
69
+ def expose_dev_tools_protocol(target_id:, binding_name: nil)
70
+ @devtools.send_cmd('Target.exposeDevToolsProtocol',
71
+ targetId: target_id,
72
+ bindingName: binding_name)
73
+ end
74
+
75
+ def create_browser_context(dispose_on_detach: nil, proxy_server: nil, proxy_bypass_list: nil)
76
+ @devtools.send_cmd('Target.createBrowserContext',
77
+ disposeOnDetach: dispose_on_detach,
78
+ proxyServer: proxy_server,
79
+ proxyBypassList: proxy_bypass_list)
80
+ end
81
+
82
+ def get_browser_contexts
83
+ @devtools.send_cmd('Target.getBrowserContexts')
84
+ end
85
+
86
+ def create_target(url:, width: nil, height: nil, browser_context_id: nil, enable_begin_frame_control: nil, new_window: nil, background: nil)
87
+ @devtools.send_cmd('Target.createTarget',
88
+ url: url,
89
+ width: width,
90
+ height: height,
91
+ browserContextId: browser_context_id,
92
+ enableBeginFrameControl: enable_begin_frame_control,
93
+ newWindow: new_window,
94
+ background: background)
95
+ end
96
+
97
+ def detach_from_target(session_id: nil, target_id: nil)
98
+ @devtools.send_cmd('Target.detachFromTarget',
99
+ sessionId: session_id,
100
+ targetId: target_id)
101
+ end
102
+
103
+ def dispose_browser_context(browser_context_id:)
104
+ @devtools.send_cmd('Target.disposeBrowserContext',
105
+ browserContextId: browser_context_id)
106
+ end
107
+
108
+ def get_target_info(target_id: nil)
109
+ @devtools.send_cmd('Target.getTargetInfo',
110
+ targetId: target_id)
111
+ end
112
+
113
+ def get_targets
114
+ @devtools.send_cmd('Target.getTargets')
115
+ end
116
+
117
+ def send_message_to_target(message:, session_id: nil, target_id: nil)
118
+ @devtools.send_cmd('Target.sendMessageToTarget',
119
+ message: message,
120
+ sessionId: session_id,
121
+ targetId: target_id)
122
+ end
123
+
124
+ def set_auto_attach(auto_attach:, wait_for_debugger_on_start:, flatten: nil)
125
+ @devtools.send_cmd('Target.setAutoAttach',
126
+ autoAttach: auto_attach,
127
+ waitForDebuggerOnStart: wait_for_debugger_on_start,
128
+ flatten: flatten)
129
+ end
130
+
131
+ def set_discover_targets(discover:)
132
+ @devtools.send_cmd('Target.setDiscoverTargets',
133
+ discover: discover)
134
+ end
135
+
136
+ def set_remote_locations(locations:)
137
+ @devtools.send_cmd('Target.setRemoteLocations',
138
+ locations: locations)
139
+ end
140
+
141
+ end # V88
142
+ end # Target
143
+ end # DevTools
144
+ end # WebDriver
145
+ end # Selenium
@@ -0,0 +1,57 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module WebDriver
23
+ class DevTools
24
+ def tethering
25
+ @tethering ||= V88::Tethering.new(self)
26
+ end
27
+
28
+ module V88
29
+ class Tethering
30
+ EVENTS = {
31
+ accepted: 'accepted',
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["Tethering.#{event}"] << block
41
+ end
42
+
43
+ def bind(port:)
44
+ @devtools.send_cmd('Tethering.bind',
45
+ port: port)
46
+ end
47
+
48
+ def unbind(port:)
49
+ @devtools.send_cmd('Tethering.unbind',
50
+ port: port)
51
+ end
52
+
53
+ end # V88
54
+ end # Tethering
55
+ end # DevTools
56
+ end # WebDriver
57
+ end # Selenium