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.
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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8d4baf8cb28ac01aa15465bc1323764fcfbd9404779927a4ea2e5ccb83c776d
4
- data.tar.gz: eab4c095fe4d69071b27c725188097a6a18039ebd7c381b61f7c8ce9c4a09c44
3
+ metadata.gz: cb2817117229f3182dd8e05c6f4daa6d86667b1abe415590ed2408134b97868c
4
+ data.tar.gz: 8fe05eae17c0adc61ea201abd149aad99c9c758b2df78c9d16a306e925c46151
5
5
  SHA512:
6
- metadata.gz: 25399b6de766c074408f4a2727ef758d4bc76b8ab2dad0ee9a5099f2b39473ba56948f00d59f8c46fb37b7db629b30a62881da0e9c5e19b0f09797bae4e27f24
7
- data.tar.gz: 33ca199a13e7fbdf1347c3cf3a076ab0425ebb85af722978540b43160178f967ba3874632e2e69a9da9b71c33453b1b25fa5e34dc972c867fb8e80123e605c1a
6
+ metadata.gz: '0661519ff6855261e9019a8bd540bbcda3883a0860ea55ffae8b81ef878221f8119221ce642db22605b43eedfb88edd7d1f019c7a36633c37c564a76c4ced71b'
7
+ data.tar.gz: 3832449b61023345ba17016f22e02839284675ea5ea3ee06635dc9e87acde4864b8cc71f3c9d0f73948fecc936538d8377bbb8b15632bb88d92c83941ff6b164
@@ -0,0 +1 @@
1
+ Dir.glob("#{File.dirname(File.absolute_path(__FILE__))}/v84/*", &method(:require))
@@ -0,0 +1,56 @@
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 Accessibility
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["Accessibility.#{event}"] << block
32
+ end
33
+
34
+ def disable
35
+ @devtools.send_cmd('Accessibility.disable')
36
+ end
37
+
38
+ def enable
39
+ @devtools.send_cmd('Accessibility.enable')
40
+ end
41
+
42
+ def get_partial_ax_tree(node_id: nil, backend_node_id: nil, object_id: nil, fetch_relatives: nil)
43
+ @devtools.send_cmd('Accessibility.getPartialAXTree',
44
+ nodeId: node_id,
45
+ backendNodeId: backend_node_id,
46
+ objectId: object_id,
47
+ fetchRelatives: fetch_relatives)
48
+ end
49
+
50
+ def get_full_ax_tree
51
+ @devtools.send_cmd('Accessibility.getFullAXTree')
52
+ end
53
+
54
+ end # Accessibility
55
+ end # DevTools
56
+ end # Selenium
@@ -0,0 +1,92 @@
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 Animation
24
+ EVENTS = {
25
+ animation_canceled: 'animationCanceled',
26
+ animation_created: 'animationCreated',
27
+ animation_started: 'animationStarted',
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["Animation.#{event}"] << block
37
+ end
38
+
39
+ def disable
40
+ @devtools.send_cmd('Animation.disable')
41
+ end
42
+
43
+ def enable
44
+ @devtools.send_cmd('Animation.enable')
45
+ end
46
+
47
+ def get_current_time(id:)
48
+ @devtools.send_cmd('Animation.getCurrentTime',
49
+ id: id)
50
+ end
51
+
52
+ def get_playback_rate
53
+ @devtools.send_cmd('Animation.getPlaybackRate')
54
+ end
55
+
56
+ def release_animations(animations:)
57
+ @devtools.send_cmd('Animation.releaseAnimations',
58
+ animations: animations)
59
+ end
60
+
61
+ def resolve_animation(animation_id:)
62
+ @devtools.send_cmd('Animation.resolveAnimation',
63
+ animationId: animation_id)
64
+ end
65
+
66
+ def seek_animations(animations:, current_time:)
67
+ @devtools.send_cmd('Animation.seekAnimations',
68
+ animations: animations,
69
+ currentTime: current_time)
70
+ end
71
+
72
+ def set_paused(animations:, paused:)
73
+ @devtools.send_cmd('Animation.setPaused',
74
+ animations: animations,
75
+ paused: paused)
76
+ end
77
+
78
+ def set_playback_rate(playback_rate:)
79
+ @devtools.send_cmd('Animation.setPlaybackRate',
80
+ playbackRate: playback_rate)
81
+ end
82
+
83
+ def set_timing(animation_id:, duration:, delay:)
84
+ @devtools.send_cmd('Animation.setTiming',
85
+ animationId: animation_id,
86
+ duration: duration,
87
+ delay: delay)
88
+ end
89
+
90
+ end # Animation
91
+ end # DevTools
92
+ end # Selenium
@@ -0,0 +1,58 @@
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 ApplicationCache
24
+ EVENTS = {
25
+ application_cache_status_updated: 'applicationCacheStatusUpdated',
26
+ network_state_updated: 'networkStateUpdated',
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["ApplicationCache.#{event}"] << block
36
+ end
37
+
38
+ def enable
39
+ @devtools.send_cmd('ApplicationCache.enable')
40
+ end
41
+
42
+ def get_application_cache_for_frame(frame_id:)
43
+ @devtools.send_cmd('ApplicationCache.getApplicationCacheForFrame',
44
+ frameId: frame_id)
45
+ end
46
+
47
+ def get_frames_with_manifests
48
+ @devtools.send_cmd('ApplicationCache.getFramesWithManifests')
49
+ end
50
+
51
+ def get_manifest_for_frame(frame_id:)
52
+ @devtools.send_cmd('ApplicationCache.getManifestForFrame',
53
+ frameId: frame_id)
54
+ end
55
+
56
+ end # ApplicationCache
57
+ end # DevTools
58
+ end # Selenium
@@ -0,0 +1,55 @@
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 Audits
24
+ EVENTS = {
25
+ issue_added: 'issueAdded',
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["Audits.#{event}"] << block
35
+ end
36
+
37
+ def get_encoded_response(request_id:, encoding:, quality: nil, size_only: nil)
38
+ @devtools.send_cmd('Audits.getEncodedResponse',
39
+ requestId: request_id,
40
+ encoding: encoding,
41
+ quality: quality,
42
+ sizeOnly: size_only)
43
+ end
44
+
45
+ def disable
46
+ @devtools.send_cmd('Audits.disable')
47
+ end
48
+
49
+ def enable
50
+ @devtools.send_cmd('Audits.enable')
51
+ end
52
+
53
+ end # Audits
54
+ end # DevTools
55
+ end # Selenium
@@ -0,0 +1,61 @@
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 BackgroundService
24
+ EVENTS = {
25
+ recording_state_changed: 'recordingStateChanged',
26
+ background_service_event_received: 'backgroundServiceEventReceived',
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["BackgroundService.#{event}"] << block
36
+ end
37
+
38
+ def start_observing(service:)
39
+ @devtools.send_cmd('BackgroundService.startObserving',
40
+ service: service)
41
+ end
42
+
43
+ def stop_observing(service:)
44
+ @devtools.send_cmd('BackgroundService.stopObserving',
45
+ service: service)
46
+ end
47
+
48
+ def set_recording(should_record:, service:)
49
+ @devtools.send_cmd('BackgroundService.setRecording',
50
+ shouldRecord: should_record,
51
+ service: service)
52
+ end
53
+
54
+ def clear_events(service:)
55
+ @devtools.send_cmd('BackgroundService.clearEvents',
56
+ service: service)
57
+ end
58
+
59
+ end # BackgroundService
60
+ end # DevTools
61
+ end # Selenium
@@ -0,0 +1,117 @@
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 Browser
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["Browser.#{event}"] << block
32
+ end
33
+
34
+ def set_permission(permission:, setting:, origin: nil, browser_context_id: nil)
35
+ @devtools.send_cmd('Browser.setPermission',
36
+ permission: permission,
37
+ setting: setting,
38
+ origin: origin,
39
+ browserContextId: browser_context_id)
40
+ end
41
+
42
+ def grant_permissions(permissions:, origin: nil, browser_context_id: nil)
43
+ @devtools.send_cmd('Browser.grantPermissions',
44
+ permissions: permissions,
45
+ origin: origin,
46
+ browserContextId: browser_context_id)
47
+ end
48
+
49
+ def reset_permissions(browser_context_id: nil)
50
+ @devtools.send_cmd('Browser.resetPermissions',
51
+ browserContextId: browser_context_id)
52
+ end
53
+
54
+ def set_download_behavior(behavior:, browser_context_id: nil, download_path: nil)
55
+ @devtools.send_cmd('Browser.setDownloadBehavior',
56
+ behavior: behavior,
57
+ browserContextId: browser_context_id,
58
+ downloadPath: download_path)
59
+ end
60
+
61
+ def close
62
+ @devtools.send_cmd('Browser.close')
63
+ end
64
+
65
+ def crash
66
+ @devtools.send_cmd('Browser.crash')
67
+ end
68
+
69
+ def crash_gpu_process
70
+ @devtools.send_cmd('Browser.crashGpuProcess')
71
+ end
72
+
73
+ def get_version
74
+ @devtools.send_cmd('Browser.getVersion')
75
+ end
76
+
77
+ def get_browser_command_line
78
+ @devtools.send_cmd('Browser.getBrowserCommandLine')
79
+ end
80
+
81
+ def get_histograms(query: nil, delta: nil)
82
+ @devtools.send_cmd('Browser.getHistograms',
83
+ query: query,
84
+ delta: delta)
85
+ end
86
+
87
+ def get_histogram(name:, delta: nil)
88
+ @devtools.send_cmd('Browser.getHistogram',
89
+ name: name,
90
+ delta: delta)
91
+ end
92
+
93
+ def get_window_bounds(window_id:)
94
+ @devtools.send_cmd('Browser.getWindowBounds',
95
+ windowId: window_id)
96
+ end
97
+
98
+ def get_window_for_target(target_id: nil)
99
+ @devtools.send_cmd('Browser.getWindowForTarget',
100
+ targetId: target_id)
101
+ end
102
+
103
+ def set_window_bounds(window_id:, bounds:)
104
+ @devtools.send_cmd('Browser.setWindowBounds',
105
+ windowId: window_id,
106
+ bounds: bounds)
107
+ end
108
+
109
+ def set_dock_tile(badge_label: nil, image: nil)
110
+ @devtools.send_cmd('Browser.setDockTile',
111
+ badgeLabel: badge_label,
112
+ image: image)
113
+ end
114
+
115
+ end # Browser
116
+ end # DevTools
117
+ end # Selenium