selenium-devtools 0.0.1.alpha → 0.0.2.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 (233) hide show
  1. checksums.yaml +4 -4
  2. data/lib/selenium/devtools/v84.rb +1 -0
  3. data/lib/selenium/devtools/v84/accessibility.rb +56 -0
  4. data/lib/selenium/devtools/v84/animation.rb +92 -0
  5. data/lib/selenium/devtools/v84/application_cache.rb +58 -0
  6. data/lib/selenium/devtools/v84/audits.rb +55 -0
  7. data/lib/selenium/devtools/v84/background_service.rb +61 -0
  8. data/lib/selenium/devtools/v84/browser.rb +117 -0
  9. data/lib/selenium/devtools/v84/cache_storage.rb +67 -0
  10. data/lib/selenium/devtools/v84/cast.rb +64 -0
  11. data/lib/selenium/devtools/v84/console.rb +51 -0
  12. data/lib/selenium/devtools/v84/css.rb +159 -0
  13. data/lib/selenium/devtools/v84/database.rb +58 -0
  14. data/lib/selenium/devtools/v84/debugger.rb +223 -0
  15. data/lib/selenium/devtools/v84/device_orientation.rb +47 -0
  16. data/lib/selenium/devtools/v84/dom.rb +314 -0
  17. data/lib/selenium/devtools/v84/dom_debugger.rb +87 -0
  18. data/lib/selenium/devtools/v84/dom_snapshot.rb +59 -0
  19. data/lib/selenium/devtools/v84/dom_storage.rb +73 -0
  20. data/lib/selenium/devtools/v84/emulation.rb +174 -0
  21. data/lib/selenium/devtools/v84/fetch.rb +91 -0
  22. data/lib/selenium/devtools/v84/headless_experimental.rb +55 -0
  23. data/lib/selenium/devtools/v84/heap_profiler.rb +101 -0
  24. data/lib/selenium/devtools/v84/indexed_db.rb +94 -0
  25. data/lib/selenium/devtools/v84/input.rb +134 -0
  26. data/lib/selenium/devtools/v84/inspector.rb +49 -0
  27. data/lib/selenium/devtools/v84/io.rb +53 -0
  28. data/lib/selenium/devtools/v84/layer_tree.rb +89 -0
  29. data/lib/selenium/devtools/v84/log.rb +60 -0
  30. data/lib/selenium/devtools/v84/media.rb +51 -0
  31. data/lib/selenium/devtools/v84/memory.rb +80 -0
  32. data/lib/selenium/devtools/v84/network.rb +222 -0
  33. data/lib/selenium/devtools/v84/overlay.rb +151 -0
  34. data/lib/selenium/devtools/v84/page.rb +368 -0
  35. data/lib/selenium/devtools/v84/performance.rb +57 -0
  36. data/lib/selenium/devtools/v84/profiler.rb +105 -0
  37. data/lib/selenium/devtools/v84/runtime.rb +187 -0
  38. data/lib/selenium/devtools/v84/schema.rb +40 -0
  39. data/lib/selenium/devtools/v84/security.rb +65 -0
  40. data/lib/selenium/devtools/v84/service_worker.rb +110 -0
  41. data/lib/selenium/devtools/v84/storage.rb +89 -0
  42. data/lib/selenium/devtools/v84/system_info.rb +44 -0
  43. data/lib/selenium/devtools/v84/target.rb +135 -0
  44. data/lib/selenium/devtools/v84/tethering.rb +49 -0
  45. data/lib/selenium/devtools/v84/tracing.rb +70 -0
  46. data/lib/selenium/devtools/v84/web_audio.rb +64 -0
  47. data/lib/selenium/devtools/v84/web_authn.rb +88 -0
  48. data/lib/selenium/devtools/v85.rb +1 -0
  49. data/lib/selenium/devtools/v85/accessibility.rb +56 -0
  50. data/lib/selenium/devtools/v85/animation.rb +92 -0
  51. data/lib/selenium/devtools/v85/application_cache.rb +58 -0
  52. data/lib/selenium/devtools/v85/audits.rb +55 -0
  53. data/lib/selenium/devtools/v85/background_service.rb +61 -0
  54. data/lib/selenium/devtools/v85/browser.rb +117 -0
  55. data/lib/selenium/devtools/v85/cache_storage.rb +67 -0
  56. data/lib/selenium/devtools/v85/cast.rb +64 -0
  57. data/lib/selenium/devtools/v85/console.rb +51 -0
  58. data/lib/selenium/devtools/v85/css.rb +159 -0
  59. data/lib/selenium/devtools/v85/database.rb +58 -0
  60. data/lib/selenium/devtools/v85/debugger.rb +223 -0
  61. data/lib/selenium/devtools/v85/device_orientation.rb +47 -0
  62. data/lib/selenium/devtools/v85/dom.rb +314 -0
  63. data/lib/selenium/devtools/v85/dom_debugger.rb +87 -0
  64. data/lib/selenium/devtools/v85/dom_snapshot.rb +59 -0
  65. data/lib/selenium/devtools/v85/dom_storage.rb +73 -0
  66. data/lib/selenium/devtools/v85/emulation.rb +174 -0
  67. data/lib/selenium/devtools/v85/fetch.rb +91 -0
  68. data/lib/selenium/devtools/v85/headless_experimental.rb +55 -0
  69. data/lib/selenium/devtools/v85/heap_profiler.rb +101 -0
  70. data/lib/selenium/devtools/v85/indexed_db.rb +94 -0
  71. data/lib/selenium/devtools/v85/input.rb +135 -0
  72. data/lib/selenium/devtools/v85/inspector.rb +49 -0
  73. data/lib/selenium/devtools/v85/io.rb +53 -0
  74. data/lib/selenium/devtools/v85/layer_tree.rb +89 -0
  75. data/lib/selenium/devtools/v85/log.rb +60 -0
  76. data/lib/selenium/devtools/v85/media.rb +51 -0
  77. data/lib/selenium/devtools/v85/memory.rb +80 -0
  78. data/lib/selenium/devtools/v85/network.rb +222 -0
  79. data/lib/selenium/devtools/v85/overlay.rb +152 -0
  80. data/lib/selenium/devtools/v85/page.rb +368 -0
  81. data/lib/selenium/devtools/v85/performance.rb +57 -0
  82. data/lib/selenium/devtools/v85/profiler.rb +105 -0
  83. data/lib/selenium/devtools/v85/runtime.rb +188 -0
  84. data/lib/selenium/devtools/v85/schema.rb +40 -0
  85. data/lib/selenium/devtools/v85/security.rb +65 -0
  86. data/lib/selenium/devtools/v85/service_worker.rb +110 -0
  87. data/lib/selenium/devtools/v85/storage.rb +89 -0
  88. data/lib/selenium/devtools/v85/system_info.rb +44 -0
  89. data/lib/selenium/devtools/v85/target.rb +137 -0
  90. data/lib/selenium/devtools/v85/tethering.rb +49 -0
  91. data/lib/selenium/devtools/v85/tracing.rb +70 -0
  92. data/lib/selenium/devtools/v85/web_audio.rb +64 -0
  93. data/lib/selenium/devtools/v85/web_authn.rb +88 -0
  94. data/lib/selenium/devtools/v86.rb +1 -0
  95. data/lib/selenium/devtools/v86/accessibility.rb +56 -0
  96. data/lib/selenium/devtools/v86/animation.rb +92 -0
  97. data/lib/selenium/devtools/v86/application_cache.rb +58 -0
  98. data/lib/selenium/devtools/v86/audits.rb +55 -0
  99. data/lib/selenium/devtools/v86/background_service.rb +61 -0
  100. data/lib/selenium/devtools/v86/browser.rb +117 -0
  101. data/lib/selenium/devtools/v86/cache_storage.rb +67 -0
  102. data/lib/selenium/devtools/v86/cast.rb +64 -0
  103. data/lib/selenium/devtools/v86/console.rb +51 -0
  104. data/lib/selenium/devtools/v86/css.rb +173 -0
  105. data/lib/selenium/devtools/v86/database.rb +58 -0
  106. data/lib/selenium/devtools/v86/debugger.rb +225 -0
  107. data/lib/selenium/devtools/v86/device_orientation.rb +47 -0
  108. data/lib/selenium/devtools/v86/dom.rb +321 -0
  109. data/lib/selenium/devtools/v86/dom_debugger.rb +87 -0
  110. data/lib/selenium/devtools/v86/dom_snapshot.rb +59 -0
  111. data/lib/selenium/devtools/v86/dom_storage.rb +73 -0
  112. data/lib/selenium/devtools/v86/emulation.rb +185 -0
  113. data/lib/selenium/devtools/v86/fetch.rb +91 -0
  114. data/lib/selenium/devtools/v86/headless_experimental.rb +55 -0
  115. data/lib/selenium/devtools/v86/heap_profiler.rb +101 -0
  116. data/lib/selenium/devtools/v86/indexed_db.rb +94 -0
  117. data/lib/selenium/devtools/v86/input.rb +135 -0
  118. data/lib/selenium/devtools/v86/inspector.rb +49 -0
  119. data/lib/selenium/devtools/v86/io.rb +53 -0
  120. data/lib/selenium/devtools/v86/layer_tree.rb +89 -0
  121. data/lib/selenium/devtools/v86/log.rb +60 -0
  122. data/lib/selenium/devtools/v86/media.rb +51 -0
  123. data/lib/selenium/devtools/v86/memory.rb +80 -0
  124. data/lib/selenium/devtools/v86/network.rb +227 -0
  125. data/lib/selenium/devtools/v86/overlay.rb +175 -0
  126. data/lib/selenium/devtools/v86/page.rb +368 -0
  127. data/lib/selenium/devtools/v86/performance.rb +57 -0
  128. data/lib/selenium/devtools/v86/profiler.rb +105 -0
  129. data/lib/selenium/devtools/v86/runtime.rb +188 -0
  130. data/lib/selenium/devtools/v86/schema.rb +40 -0
  131. data/lib/selenium/devtools/v86/security.rb +65 -0
  132. data/lib/selenium/devtools/v86/service_worker.rb +110 -0
  133. data/lib/selenium/devtools/v86/storage.rb +89 -0
  134. data/lib/selenium/devtools/v86/system_info.rb +44 -0
  135. data/lib/selenium/devtools/v86/target.rb +137 -0
  136. data/lib/selenium/devtools/v86/tethering.rb +49 -0
  137. data/lib/selenium/devtools/v86/tracing.rb +70 -0
  138. data/lib/selenium/devtools/v86/web_audio.rb +64 -0
  139. data/lib/selenium/devtools/v86/web_authn.rb +94 -0
  140. data/lib/selenium/devtools/v87.rb +1 -0
  141. data/lib/selenium/devtools/v87/accessibility.rb +65 -0
  142. data/lib/selenium/devtools/v87/animation.rb +92 -0
  143. data/lib/selenium/devtools/v87/application_cache.rb +58 -0
  144. data/lib/selenium/devtools/v87/audits.rb +55 -0
  145. data/lib/selenium/devtools/v87/background_service.rb +61 -0
  146. data/lib/selenium/devtools/v87/browser.rb +117 -0
  147. data/lib/selenium/devtools/v87/cache_storage.rb +67 -0
  148. data/lib/selenium/devtools/v87/cast.rb +64 -0
  149. data/lib/selenium/devtools/v87/console.rb +51 -0
  150. data/lib/selenium/devtools/v87/css.rb +173 -0
  151. data/lib/selenium/devtools/v87/database.rb +58 -0
  152. data/lib/selenium/devtools/v87/debugger.rb +225 -0
  153. data/lib/selenium/devtools/v87/device_orientation.rb +47 -0
  154. data/lib/selenium/devtools/v87/dom.rb +321 -0
  155. data/lib/selenium/devtools/v87/dom_debugger.rb +87 -0
  156. data/lib/selenium/devtools/v87/dom_snapshot.rb +59 -0
  157. data/lib/selenium/devtools/v87/dom_storage.rb +73 -0
  158. data/lib/selenium/devtools/v87/emulation.rb +185 -0
  159. data/lib/selenium/devtools/v87/fetch.rb +91 -0
  160. data/lib/selenium/devtools/v87/headless_experimental.rb +55 -0
  161. data/lib/selenium/devtools/v87/heap_profiler.rb +101 -0
  162. data/lib/selenium/devtools/v87/indexed_db.rb +94 -0
  163. data/lib/selenium/devtools/v87/input.rb +135 -0
  164. data/lib/selenium/devtools/v87/inspector.rb +49 -0
  165. data/lib/selenium/devtools/v87/io.rb +53 -0
  166. data/lib/selenium/devtools/v87/layer_tree.rb +89 -0
  167. data/lib/selenium/devtools/v87/log.rb +60 -0
  168. data/lib/selenium/devtools/v87/media.rb +51 -0
  169. data/lib/selenium/devtools/v87/memory.rb +80 -0
  170. data/lib/selenium/devtools/v87/network.rb +239 -0
  171. data/lib/selenium/devtools/v87/overlay.rb +175 -0
  172. data/lib/selenium/devtools/v87/page.rb +368 -0
  173. data/lib/selenium/devtools/v87/performance.rb +57 -0
  174. data/lib/selenium/devtools/v87/profiler.rb +117 -0
  175. data/lib/selenium/devtools/v87/runtime.rb +188 -0
  176. data/lib/selenium/devtools/v87/schema.rb +40 -0
  177. data/lib/selenium/devtools/v87/security.rb +65 -0
  178. data/lib/selenium/devtools/v87/service_worker.rb +110 -0
  179. data/lib/selenium/devtools/v87/storage.rb +89 -0
  180. data/lib/selenium/devtools/v87/system_info.rb +44 -0
  181. data/lib/selenium/devtools/v87/target.rb +137 -0
  182. data/lib/selenium/devtools/v87/tethering.rb +49 -0
  183. data/lib/selenium/devtools/v87/tracing.rb +70 -0
  184. data/lib/selenium/devtools/v87/web_audio.rb +64 -0
  185. data/lib/selenium/devtools/v87/web_authn.rb +94 -0
  186. data/lib/selenium/devtools/v88.rb +1 -1
  187. data/lib/selenium/devtools/v88/accessibility.rb +35 -43
  188. data/lib/selenium/devtools/v88/animation.rb +57 -65
  189. data/lib/selenium/devtools/v88/application_cache.rb +29 -37
  190. data/lib/selenium/devtools/v88/audits.rb +31 -39
  191. data/lib/selenium/devtools/v88/background_service.rb +32 -40
  192. data/lib/selenium/devtools/v88/browser.rb +100 -108
  193. data/lib/selenium/devtools/v88/cache_storage.rb +37 -45
  194. data/lib/selenium/devtools/v88/cast.rb +34 -42
  195. data/lib/selenium/devtools/v88/console.rb +27 -35
  196. data/lib/selenium/devtools/v88/css.rb +151 -159
  197. data/lib/selenium/devtools/v88/database.rb +29 -37
  198. data/lib/selenium/devtools/v88/debugger.rb +203 -211
  199. data/lib/selenium/devtools/v88/device_orientation.rb +20 -28
  200. data/lib/selenium/devtools/v88/dom.rb +299 -307
  201. data/lib/selenium/devtools/v88/dom_debugger.rb +53 -61
  202. data/lib/selenium/devtools/v88/dom_snapshot.rb +30 -38
  203. data/lib/selenium/devtools/v88/dom_storage.rb +42 -50
  204. data/lib/selenium/devtools/v88/emulation.rb +168 -176
  205. data/lib/selenium/devtools/v88/fetch.rb +58 -66
  206. data/lib/selenium/devtools/v88/headless_experimental.rb +31 -39
  207. data/lib/selenium/devtools/v88/heap_profiler.rb +77 -85
  208. data/lib/selenium/devtools/v88/indexed_db.rb +60 -68
  209. data/lib/selenium/devtools/v88/input.rb +106 -114
  210. data/lib/selenium/devtools/v88/inspector.rb +22 -30
  211. data/lib/selenium/devtools/v88/io.rb +29 -37
  212. data/lib/selenium/devtools/v88/layer_tree.rb +55 -63
  213. data/lib/selenium/devtools/v88/log.rb +30 -38
  214. data/lib/selenium/devtools/v88/media.rb +24 -32
  215. data/lib/selenium/devtools/v88/memory.rb +45 -53
  216. data/lib/selenium/devtools/v88/network.rb +217 -225
  217. data/lib/selenium/devtools/v88/overlay.rb +153 -161
  218. data/lib/selenium/devtools/v88/page.rb +346 -354
  219. data/lib/selenium/devtools/v88/performance.rb +28 -36
  220. data/lib/selenium/devtools/v88/profiler.rb +95 -103
  221. data/lib/selenium/devtools/v88/runtime.rb +167 -175
  222. data/lib/selenium/devtools/v88/schema.rb +14 -22
  223. data/lib/selenium/devtools/v88/security.rb +35 -43
  224. data/lib/selenium/devtools/v88/service_worker.rb +86 -94
  225. data/lib/selenium/devtools/v88/storage.rb +60 -68
  226. data/lib/selenium/devtools/v88/system_info.rb +17 -25
  227. data/lib/selenium/devtools/v88/target.rb +115 -123
  228. data/lib/selenium/devtools/v88/tethering.rb +22 -30
  229. data/lib/selenium/devtools/v88/tracing.rb +41 -49
  230. data/lib/selenium/devtools/v88/web_audio.rb +36 -44
  231. data/lib/selenium/devtools/v88/web_authn.rb +70 -78
  232. data/lib/selenium/devtools/version.rb +1 -1
  233. metadata +185 -1
@@ -0,0 +1,101 @@
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 HeapProfiler
24
+ EVENTS = {
25
+ add_heap_snapshot_chunk: 'addHeapSnapshotChunk',
26
+ heap_stats_update: 'heapStatsUpdate',
27
+ last_seen_object_id: 'lastSeenObjectId',
28
+ report_heap_snapshot_progress: 'reportHeapSnapshotProgress',
29
+ reset_profiles: 'resetProfiles',
30
+ }.freeze
31
+
32
+ def initialize(devtools)
33
+ @devtools = devtools
34
+ end
35
+
36
+ def on(event, &block)
37
+ event = EVENTS[event] if event.is_a?(Symbol)
38
+ @devtools.callbacks["HeapProfiler.#{event}"] << block
39
+ end
40
+
41
+ def add_inspected_heap_object(heap_object_id:)
42
+ @devtools.send_cmd('HeapProfiler.addInspectedHeapObject',
43
+ heapObjectId: heap_object_id)
44
+ end
45
+
46
+ def collect_garbage
47
+ @devtools.send_cmd('HeapProfiler.collectGarbage')
48
+ end
49
+
50
+ def disable
51
+ @devtools.send_cmd('HeapProfiler.disable')
52
+ end
53
+
54
+ def enable
55
+ @devtools.send_cmd('HeapProfiler.enable')
56
+ end
57
+
58
+ def get_heap_object_id(object_id:)
59
+ @devtools.send_cmd('HeapProfiler.getHeapObjectId',
60
+ objectId: object_id)
61
+ end
62
+
63
+ def get_object_by_heap_object_id(object_id:, object_group: nil)
64
+ @devtools.send_cmd('HeapProfiler.getObjectByHeapObjectId',
65
+ objectId: object_id,
66
+ objectGroup: object_group)
67
+ end
68
+
69
+ def get_sampling_profile
70
+ @devtools.send_cmd('HeapProfiler.getSamplingProfile')
71
+ end
72
+
73
+ def start_sampling(sampling_interval: nil)
74
+ @devtools.send_cmd('HeapProfiler.startSampling',
75
+ samplingInterval: sampling_interval)
76
+ end
77
+
78
+ def start_tracking_heap_objects(track_allocations: nil)
79
+ @devtools.send_cmd('HeapProfiler.startTrackingHeapObjects',
80
+ trackAllocations: track_allocations)
81
+ end
82
+
83
+ def stop_sampling
84
+ @devtools.send_cmd('HeapProfiler.stopSampling')
85
+ end
86
+
87
+ def stop_tracking_heap_objects(report_progress: nil, treat_global_objects_as_roots: nil)
88
+ @devtools.send_cmd('HeapProfiler.stopTrackingHeapObjects',
89
+ reportProgress: report_progress,
90
+ treatGlobalObjectsAsRoots: treat_global_objects_as_roots)
91
+ end
92
+
93
+ def take_heap_snapshot(report_progress: nil, treat_global_objects_as_roots: nil)
94
+ @devtools.send_cmd('HeapProfiler.takeHeapSnapshot',
95
+ reportProgress: report_progress,
96
+ treatGlobalObjectsAsRoots: treat_global_objects_as_roots)
97
+ end
98
+
99
+ end # HeapProfiler
100
+ end # DevTools
101
+ 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 IndexedDB
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["IndexedDB.#{event}"] << block
32
+ end
33
+
34
+ def clear_object_store(security_origin:, database_name:, object_store_name:)
35
+ @devtools.send_cmd('IndexedDB.clearObjectStore',
36
+ securityOrigin: security_origin,
37
+ databaseName: database_name,
38
+ objectStoreName: object_store_name)
39
+ end
40
+
41
+ def delete_database(security_origin:, database_name:)
42
+ @devtools.send_cmd('IndexedDB.deleteDatabase',
43
+ securityOrigin: security_origin,
44
+ databaseName: database_name)
45
+ end
46
+
47
+ def delete_object_store_entries(security_origin:, database_name:, object_store_name:, key_range:)
48
+ @devtools.send_cmd('IndexedDB.deleteObjectStoreEntries',
49
+ securityOrigin: security_origin,
50
+ databaseName: database_name,
51
+ objectStoreName: object_store_name,
52
+ keyRange: key_range)
53
+ end
54
+
55
+ def disable
56
+ @devtools.send_cmd('IndexedDB.disable')
57
+ end
58
+
59
+ def enable
60
+ @devtools.send_cmd('IndexedDB.enable')
61
+ end
62
+
63
+ def request_data(security_origin:, database_name:, object_store_name:, index_name:, skip_count:, page_size:, key_range: nil)
64
+ @devtools.send_cmd('IndexedDB.requestData',
65
+ securityOrigin: security_origin,
66
+ databaseName: database_name,
67
+ objectStoreName: object_store_name,
68
+ indexName: index_name,
69
+ skipCount: skip_count,
70
+ pageSize: page_size,
71
+ keyRange: key_range)
72
+ end
73
+
74
+ def get_metadata(security_origin:, database_name:, object_store_name:)
75
+ @devtools.send_cmd('IndexedDB.getMetadata',
76
+ securityOrigin: security_origin,
77
+ databaseName: database_name,
78
+ objectStoreName: object_store_name)
79
+ end
80
+
81
+ def request_database(security_origin:, database_name:)
82
+ @devtools.send_cmd('IndexedDB.requestDatabase',
83
+ securityOrigin: security_origin,
84
+ databaseName: database_name)
85
+ end
86
+
87
+ def request_database_names(security_origin:)
88
+ @devtools.send_cmd('IndexedDB.requestDatabaseNames',
89
+ securityOrigin: security_origin)
90
+ end
91
+
92
+ end # IndexedDB
93
+ end # DevTools
94
+ end # Selenium
@@ -0,0 +1,135 @@
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 Input
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["Input.#{event}"] << block
32
+ end
33
+
34
+ def dispatch_key_event(type:, modifiers: nil, timestamp: nil, text: nil, unmodified_text: nil, key_identifier: nil, code: nil, key: nil, windows_virtual_key_code: nil, native_virtual_key_code: nil, auto_repeat: nil, is_keypad: nil, is_system_key: nil, location: nil, commands: nil)
35
+ @devtools.send_cmd('Input.dispatchKeyEvent',
36
+ type: type,
37
+ modifiers: modifiers,
38
+ timestamp: timestamp,
39
+ text: text,
40
+ unmodifiedText: unmodified_text,
41
+ keyIdentifier: key_identifier,
42
+ code: code,
43
+ key: key,
44
+ windowsVirtualKeyCode: windows_virtual_key_code,
45
+ nativeVirtualKeyCode: native_virtual_key_code,
46
+ autoRepeat: auto_repeat,
47
+ isKeypad: is_keypad,
48
+ isSystemKey: is_system_key,
49
+ location: location,
50
+ commands: commands)
51
+ end
52
+
53
+ def insert_text(text:)
54
+ @devtools.send_cmd('Input.insertText',
55
+ text: text)
56
+ end
57
+
58
+ def dispatch_mouse_event(type:, x:, y:, modifiers: nil, timestamp: nil, button: nil, buttons: nil, click_count: nil, delta_x: nil, delta_y: nil, pointer_type: nil)
59
+ @devtools.send_cmd('Input.dispatchMouseEvent',
60
+ type: type,
61
+ x: x,
62
+ y: y,
63
+ modifiers: modifiers,
64
+ timestamp: timestamp,
65
+ button: button,
66
+ buttons: buttons,
67
+ clickCount: click_count,
68
+ deltaX: delta_x,
69
+ deltaY: delta_y,
70
+ pointerType: pointer_type)
71
+ end
72
+
73
+ def dispatch_touch_event(type:, touch_points:, modifiers: nil, timestamp: nil)
74
+ @devtools.send_cmd('Input.dispatchTouchEvent',
75
+ type: type,
76
+ touchPoints: touch_points,
77
+ modifiers: modifiers,
78
+ timestamp: timestamp)
79
+ end
80
+
81
+ def emulate_touch_from_mouse_event(type:, x:, y:, button:, timestamp: nil, delta_x: nil, delta_y: nil, modifiers: nil, click_count: nil)
82
+ @devtools.send_cmd('Input.emulateTouchFromMouseEvent',
83
+ type: type,
84
+ x: x,
85
+ y: y,
86
+ button: button,
87
+ timestamp: timestamp,
88
+ deltaX: delta_x,
89
+ deltaY: delta_y,
90
+ modifiers: modifiers,
91
+ clickCount: click_count)
92
+ end
93
+
94
+ def set_ignore_input_events(ignore:)
95
+ @devtools.send_cmd('Input.setIgnoreInputEvents',
96
+ ignore: ignore)
97
+ end
98
+
99
+ def synthesize_pinch_gesture(x:, y:, scale_factor:, relative_speed: nil, gesture_source_type: nil)
100
+ @devtools.send_cmd('Input.synthesizePinchGesture',
101
+ x: x,
102
+ y: y,
103
+ scaleFactor: scale_factor,
104
+ relativeSpeed: relative_speed,
105
+ gestureSourceType: gesture_source_type)
106
+ end
107
+
108
+ def synthesize_scroll_gesture(x:, y:, x_distance: nil, y_distance: nil, x_overscroll: nil, y_overscroll: nil, prevent_fling: nil, speed: nil, gesture_source_type: nil, repeat_count: nil, repeat_delay_ms: nil, interaction_marker_name: nil)
109
+ @devtools.send_cmd('Input.synthesizeScrollGesture',
110
+ x: x,
111
+ y: y,
112
+ xDistance: x_distance,
113
+ yDistance: y_distance,
114
+ xOverscroll: x_overscroll,
115
+ yOverscroll: y_overscroll,
116
+ preventFling: prevent_fling,
117
+ speed: speed,
118
+ gestureSourceType: gesture_source_type,
119
+ repeatCount: repeat_count,
120
+ repeatDelayMs: repeat_delay_ms,
121
+ interactionMarkerName: interaction_marker_name)
122
+ end
123
+
124
+ def synthesize_tap_gesture(x:, y:, duration: nil, tap_count: nil, gesture_source_type: nil)
125
+ @devtools.send_cmd('Input.synthesizeTapGesture',
126
+ x: x,
127
+ y: y,
128
+ duration: duration,
129
+ tapCount: tap_count,
130
+ gestureSourceType: gesture_source_type)
131
+ end
132
+
133
+ end # Input
134
+ end # DevTools
135
+ 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 Inspector
24
+ EVENTS = {
25
+ detached: 'detached',
26
+ target_crashed: 'targetCrashed',
27
+ target_reloaded_after_crash: 'targetReloadedAfterCrash',
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["Inspector.#{event}"] << block
37
+ end
38
+
39
+ def disable
40
+ @devtools.send_cmd('Inspector.disable')
41
+ end
42
+
43
+ def enable
44
+ @devtools.send_cmd('Inspector.enable')
45
+ end
46
+
47
+ end # Inspector
48
+ end # DevTools
49
+ end # Selenium
@@ -0,0 +1,53 @@
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 IO
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["IO.#{event}"] << block
32
+ end
33
+
34
+ def close(handle:)
35
+ @devtools.send_cmd('IO.close',
36
+ handle: handle)
37
+ end
38
+
39
+ def read(handle:, offset: nil, size: nil)
40
+ @devtools.send_cmd('IO.read',
41
+ handle: handle,
42
+ offset: offset,
43
+ size: size)
44
+ end
45
+
46
+ def resolve_blob(object_id:)
47
+ @devtools.send_cmd('IO.resolveBlob',
48
+ objectId: object_id)
49
+ end
50
+
51
+ end # IO
52
+ end # DevTools
53
+ 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 LayerTree
24
+ EVENTS = {
25
+ layer_painted: 'layerPainted',
26
+ layer_tree_did_change: 'layerTreeDidChange',
27
+ }.freeze
28
+
29
+ def initialize(devtools)
30
+ @devtools = devtools
31
+ end
32
+
33
+ def on(event, &block)
34
+ event = EVENTS[event] if event.is_a?(Symbol)
35
+ @devtools.callbacks["LayerTree.#{event}"] << block
36
+ end
37
+
38
+ def compositing_reasons(layer_id:)
39
+ @devtools.send_cmd('LayerTree.compositingReasons',
40
+ layerId: layer_id)
41
+ end
42
+
43
+ def disable
44
+ @devtools.send_cmd('LayerTree.disable')
45
+ end
46
+
47
+ def enable
48
+ @devtools.send_cmd('LayerTree.enable')
49
+ end
50
+
51
+ def load_snapshot(tiles:)
52
+ @devtools.send_cmd('LayerTree.loadSnapshot',
53
+ tiles: tiles)
54
+ end
55
+
56
+ def make_snapshot(layer_id:)
57
+ @devtools.send_cmd('LayerTree.makeSnapshot',
58
+ layerId: layer_id)
59
+ end
60
+
61
+ def profile_snapshot(snapshot_id:, min_repeat_count: nil, min_duration: nil, clip_rect: nil)
62
+ @devtools.send_cmd('LayerTree.profileSnapshot',
63
+ snapshotId: snapshot_id,
64
+ minRepeatCount: min_repeat_count,
65
+ minDuration: min_duration,
66
+ clipRect: clip_rect)
67
+ end
68
+
69
+ def release_snapshot(snapshot_id:)
70
+ @devtools.send_cmd('LayerTree.releaseSnapshot',
71
+ snapshotId: snapshot_id)
72
+ end
73
+
74
+ def replay_snapshot(snapshot_id:, from_step: nil, to_step: nil, scale: nil)
75
+ @devtools.send_cmd('LayerTree.replaySnapshot',
76
+ snapshotId: snapshot_id,
77
+ fromStep: from_step,
78
+ toStep: to_step,
79
+ scale: scale)
80
+ end
81
+
82
+ def snapshot_command_log(snapshot_id:)
83
+ @devtools.send_cmd('LayerTree.snapshotCommandLog',
84
+ snapshotId: snapshot_id)
85
+ end
86
+
87
+ end # LayerTree
88
+ end # DevTools
89
+ end # Selenium