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,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
+ class CacheStorage
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["CacheStorage.#{event}"] << block
32
+ end
33
+
34
+ def delete_cache(cache_id:)
35
+ @devtools.send_cmd('CacheStorage.deleteCache',
36
+ cacheId: cache_id)
37
+ end
38
+
39
+ def delete_entry(cache_id:, request:)
40
+ @devtools.send_cmd('CacheStorage.deleteEntry',
41
+ cacheId: cache_id,
42
+ request: request)
43
+ end
44
+
45
+ def request_cache_names(security_origin:)
46
+ @devtools.send_cmd('CacheStorage.requestCacheNames',
47
+ securityOrigin: security_origin)
48
+ end
49
+
50
+ def request_cached_response(cache_id:, request_url:, request_headers:)
51
+ @devtools.send_cmd('CacheStorage.requestCachedResponse',
52
+ cacheId: cache_id,
53
+ requestURL: request_url,
54
+ requestHeaders: request_headers)
55
+ end
56
+
57
+ def request_entries(cache_id:, skip_count: nil, page_size: nil, path_filter: nil)
58
+ @devtools.send_cmd('CacheStorage.requestEntries',
59
+ cacheId: cache_id,
60
+ skipCount: skip_count,
61
+ pageSize: page_size,
62
+ pathFilter: path_filter)
63
+ end
64
+
65
+ end # CacheStorage
66
+ end # DevTools
67
+ end # Selenium
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ class Cast
24
+ EVENTS = {
25
+ sinks_updated: 'sinksUpdated',
26
+ issue_updated: 'issueUpdated',
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["Cast.#{event}"] << block
36
+ end
37
+
38
+ def enable(presentation_url: nil)
39
+ @devtools.send_cmd('Cast.enable',
40
+ presentationUrl: presentation_url)
41
+ end
42
+
43
+ def disable
44
+ @devtools.send_cmd('Cast.disable')
45
+ end
46
+
47
+ def set_sink_to_use(sink_name:)
48
+ @devtools.send_cmd('Cast.setSinkToUse',
49
+ sinkName: sink_name)
50
+ end
51
+
52
+ def start_tab_mirroring(sink_name:)
53
+ @devtools.send_cmd('Cast.startTabMirroring',
54
+ sinkName: sink_name)
55
+ end
56
+
57
+ def stop_casting(sink_name:)
58
+ @devtools.send_cmd('Cast.stopCasting',
59
+ sinkName: sink_name)
60
+ end
61
+
62
+ end # Cast
63
+ end # DevTools
64
+ end # Selenium
@@ -0,0 +1,51 @@
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 Console
24
+ EVENTS = {
25
+ message_added: 'messageAdded',
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["Console.#{event}"] << block
35
+ end
36
+
37
+ def clear_messages
38
+ @devtools.send_cmd('Console.clearMessages')
39
+ end
40
+
41
+ def disable
42
+ @devtools.send_cmd('Console.disable')
43
+ end
44
+
45
+ def enable
46
+ @devtools.send_cmd('Console.enable')
47
+ end
48
+
49
+ end # Console
50
+ end # DevTools
51
+ end # Selenium
@@ -0,0 +1,159 @@
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 CSS
24
+ EVENTS = {
25
+ fonts_updated: 'fontsUpdated',
26
+ media_query_result_changed: 'mediaQueryResultChanged',
27
+ style_sheet_added: 'styleSheetAdded',
28
+ style_sheet_changed: 'styleSheetChanged',
29
+ style_sheet_removed: 'styleSheetRemoved',
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["CSS.#{event}"] << block
39
+ end
40
+
41
+ def add_rule(style_sheet_id:, rule_text:, location:)
42
+ @devtools.send_cmd('CSS.addRule',
43
+ styleSheetId: style_sheet_id,
44
+ ruleText: rule_text,
45
+ location: location)
46
+ end
47
+
48
+ def collect_class_names(style_sheet_id:)
49
+ @devtools.send_cmd('CSS.collectClassNames',
50
+ styleSheetId: style_sheet_id)
51
+ end
52
+
53
+ def create_style_sheet(frame_id:)
54
+ @devtools.send_cmd('CSS.createStyleSheet',
55
+ frameId: frame_id)
56
+ end
57
+
58
+ def disable
59
+ @devtools.send_cmd('CSS.disable')
60
+ end
61
+
62
+ def enable
63
+ @devtools.send_cmd('CSS.enable')
64
+ end
65
+
66
+ def force_pseudo_state(node_id:, forced_pseudo_classes:)
67
+ @devtools.send_cmd('CSS.forcePseudoState',
68
+ nodeId: node_id,
69
+ forcedPseudoClasses: forced_pseudo_classes)
70
+ end
71
+
72
+ def get_background_colors(node_id:)
73
+ @devtools.send_cmd('CSS.getBackgroundColors',
74
+ nodeId: node_id)
75
+ end
76
+
77
+ def get_computed_style_for_node(node_id:)
78
+ @devtools.send_cmd('CSS.getComputedStyleForNode',
79
+ nodeId: node_id)
80
+ end
81
+
82
+ def get_inline_styles_for_node(node_id:)
83
+ @devtools.send_cmd('CSS.getInlineStylesForNode',
84
+ nodeId: node_id)
85
+ end
86
+
87
+ def get_matched_styles_for_node(node_id:)
88
+ @devtools.send_cmd('CSS.getMatchedStylesForNode',
89
+ nodeId: node_id)
90
+ end
91
+
92
+ def get_media_queries
93
+ @devtools.send_cmd('CSS.getMediaQueries')
94
+ end
95
+
96
+ def get_platform_fonts_for_node(node_id:)
97
+ @devtools.send_cmd('CSS.getPlatformFontsForNode',
98
+ nodeId: node_id)
99
+ end
100
+
101
+ def get_style_sheet_text(style_sheet_id:)
102
+ @devtools.send_cmd('CSS.getStyleSheetText',
103
+ styleSheetId: style_sheet_id)
104
+ end
105
+
106
+ def set_effective_property_value_for_node(node_id:, property_name:, value:)
107
+ @devtools.send_cmd('CSS.setEffectivePropertyValueForNode',
108
+ nodeId: node_id,
109
+ propertyName: property_name,
110
+ value: value)
111
+ end
112
+
113
+ def set_keyframe_key(style_sheet_id:, range:, key_text:)
114
+ @devtools.send_cmd('CSS.setKeyframeKey',
115
+ styleSheetId: style_sheet_id,
116
+ range: range,
117
+ keyText: key_text)
118
+ end
119
+
120
+ def set_media_text(style_sheet_id:, range:, text:)
121
+ @devtools.send_cmd('CSS.setMediaText',
122
+ styleSheetId: style_sheet_id,
123
+ range: range,
124
+ text: text)
125
+ end
126
+
127
+ def set_rule_selector(style_sheet_id:, range:, selector:)
128
+ @devtools.send_cmd('CSS.setRuleSelector',
129
+ styleSheetId: style_sheet_id,
130
+ range: range,
131
+ selector: selector)
132
+ end
133
+
134
+ def set_style_sheet_text(style_sheet_id:, text:)
135
+ @devtools.send_cmd('CSS.setStyleSheetText',
136
+ styleSheetId: style_sheet_id,
137
+ text: text)
138
+ end
139
+
140
+ def set_style_texts(edits:)
141
+ @devtools.send_cmd('CSS.setStyleTexts',
142
+ edits: edits)
143
+ end
144
+
145
+ def start_rule_usage_tracking
146
+ @devtools.send_cmd('CSS.startRuleUsageTracking')
147
+ end
148
+
149
+ def stop_rule_usage_tracking
150
+ @devtools.send_cmd('CSS.stopRuleUsageTracking')
151
+ end
152
+
153
+ def take_coverage_delta
154
+ @devtools.send_cmd('CSS.takeCoverageDelta')
155
+ end
156
+
157
+ end # CSS
158
+ end # DevTools
159
+ 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 Database
24
+ EVENTS = {
25
+ add_database: 'addDatabase',
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["Database.#{event}"] << block
35
+ end
36
+
37
+ def disable
38
+ @devtools.send_cmd('Database.disable')
39
+ end
40
+
41
+ def enable
42
+ @devtools.send_cmd('Database.enable')
43
+ end
44
+
45
+ def execute_sql(database_id:, query:)
46
+ @devtools.send_cmd('Database.executeSQL',
47
+ databaseId: database_id,
48
+ query: query)
49
+ end
50
+
51
+ def get_database_table_names(database_id:)
52
+ @devtools.send_cmd('Database.getDatabaseTableNames',
53
+ databaseId: database_id)
54
+ end
55
+
56
+ end # Database
57
+ end # DevTools
58
+ end # Selenium
@@ -0,0 +1,223 @@
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 Debugger
24
+ EVENTS = {
25
+ breakpoint_resolved: 'breakpointResolved',
26
+ paused: 'paused',
27
+ resumed: 'resumed',
28
+ script_failed_to_parse: 'scriptFailedToParse',
29
+ script_parsed: 'scriptParsed',
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["Debugger.#{event}"] << block
39
+ end
40
+
41
+ def continue_to_location(location:, target_call_frames: nil)
42
+ @devtools.send_cmd('Debugger.continueToLocation',
43
+ location: location,
44
+ targetCallFrames: target_call_frames)
45
+ end
46
+
47
+ def disable
48
+ @devtools.send_cmd('Debugger.disable')
49
+ end
50
+
51
+ def enable(max_scripts_cache_size: nil)
52
+ @devtools.send_cmd('Debugger.enable',
53
+ maxScriptsCacheSize: max_scripts_cache_size)
54
+ end
55
+
56
+ def evaluate_on_call_frame(call_frame_id:, expression:, object_group: nil, include_command_line_api: nil, silent: nil, return_by_value: nil, generate_preview: nil, throw_on_side_effect: nil, timeout: nil)
57
+ @devtools.send_cmd('Debugger.evaluateOnCallFrame',
58
+ callFrameId: call_frame_id,
59
+ expression: expression,
60
+ objectGroup: object_group,
61
+ includeCommandLineAPI: include_command_line_api,
62
+ silent: silent,
63
+ returnByValue: return_by_value,
64
+ generatePreview: generate_preview,
65
+ throwOnSideEffect: throw_on_side_effect,
66
+ timeout: timeout)
67
+ end
68
+
69
+ def execute_wasm_evaluator(call_frame_id:, evaluator:, timeout: nil)
70
+ @devtools.send_cmd('Debugger.executeWasmEvaluator',
71
+ callFrameId: call_frame_id,
72
+ evaluator: evaluator,
73
+ timeout: timeout)
74
+ end
75
+
76
+ def get_possible_breakpoints(start:, _end: nil, restrict_to_function: nil)
77
+ @devtools.send_cmd('Debugger.getPossibleBreakpoints',
78
+ start: start,
79
+ end: _end,
80
+ restrictToFunction: restrict_to_function)
81
+ end
82
+
83
+ def get_script_source(script_id:)
84
+ @devtools.send_cmd('Debugger.getScriptSource',
85
+ scriptId: script_id)
86
+ end
87
+
88
+ def get_wasm_bytecode(script_id:)
89
+ @devtools.send_cmd('Debugger.getWasmBytecode',
90
+ scriptId: script_id)
91
+ end
92
+
93
+ def get_stack_trace(stack_trace_id:)
94
+ @devtools.send_cmd('Debugger.getStackTrace',
95
+ stackTraceId: stack_trace_id)
96
+ end
97
+
98
+ def pause
99
+ @devtools.send_cmd('Debugger.pause')
100
+ end
101
+
102
+ def pause_on_async_call(parent_stack_trace_id:)
103
+ @devtools.send_cmd('Debugger.pauseOnAsyncCall',
104
+ parentStackTraceId: parent_stack_trace_id)
105
+ end
106
+
107
+ def remove_breakpoint(breakpoint_id:)
108
+ @devtools.send_cmd('Debugger.removeBreakpoint',
109
+ breakpointId: breakpoint_id)
110
+ end
111
+
112
+ def restart_frame(call_frame_id:)
113
+ @devtools.send_cmd('Debugger.restartFrame',
114
+ callFrameId: call_frame_id)
115
+ end
116
+
117
+ def resume(terminate_on_resume: nil)
118
+ @devtools.send_cmd('Debugger.resume',
119
+ terminateOnResume: terminate_on_resume)
120
+ end
121
+
122
+ def search_in_content(script_id:, query:, case_sensitive: nil, is_regex: nil)
123
+ @devtools.send_cmd('Debugger.searchInContent',
124
+ scriptId: script_id,
125
+ query: query,
126
+ caseSensitive: case_sensitive,
127
+ isRegex: is_regex)
128
+ end
129
+
130
+ def set_async_call_stack_depth(max_depth:)
131
+ @devtools.send_cmd('Debugger.setAsyncCallStackDepth',
132
+ maxDepth: max_depth)
133
+ end
134
+
135
+ def set_blackbox_patterns(patterns:)
136
+ @devtools.send_cmd('Debugger.setBlackboxPatterns',
137
+ patterns: patterns)
138
+ end
139
+
140
+ def set_blackboxed_ranges(script_id:, positions:)
141
+ @devtools.send_cmd('Debugger.setBlackboxedRanges',
142
+ scriptId: script_id,
143
+ positions: positions)
144
+ end
145
+
146
+ def set_breakpoint(location:, condition: nil)
147
+ @devtools.send_cmd('Debugger.setBreakpoint',
148
+ location: location,
149
+ condition: condition)
150
+ end
151
+
152
+ def set_instrumentation_breakpoint(instrumentation:)
153
+ @devtools.send_cmd('Debugger.setInstrumentationBreakpoint',
154
+ instrumentation: instrumentation)
155
+ end
156
+
157
+ def set_breakpoint_by_url(line_number:, url: nil, url_regex: nil, script_hash: nil, column_number: nil, condition: nil)
158
+ @devtools.send_cmd('Debugger.setBreakpointByUrl',
159
+ lineNumber: line_number,
160
+ url: url,
161
+ urlRegex: url_regex,
162
+ scriptHash: script_hash,
163
+ columnNumber: column_number,
164
+ condition: condition)
165
+ end
166
+
167
+ def set_breakpoint_on_function_call(object_id:, condition: nil)
168
+ @devtools.send_cmd('Debugger.setBreakpointOnFunctionCall',
169
+ objectId: object_id,
170
+ condition: condition)
171
+ end
172
+
173
+ def set_breakpoints_active(active:)
174
+ @devtools.send_cmd('Debugger.setBreakpointsActive',
175
+ active: active)
176
+ end
177
+
178
+ def set_pause_on_exceptions(state:)
179
+ @devtools.send_cmd('Debugger.setPauseOnExceptions',
180
+ state: state)
181
+ end
182
+
183
+ def set_return_value(new_value:)
184
+ @devtools.send_cmd('Debugger.setReturnValue',
185
+ newValue: new_value)
186
+ end
187
+
188
+ def set_script_source(script_id:, script_source:, dry_run: nil)
189
+ @devtools.send_cmd('Debugger.setScriptSource',
190
+ scriptId: script_id,
191
+ scriptSource: script_source,
192
+ dryRun: dry_run)
193
+ end
194
+
195
+ def set_skip_all_pauses(skip:)
196
+ @devtools.send_cmd('Debugger.setSkipAllPauses',
197
+ skip: skip)
198
+ end
199
+
200
+ def set_variable_value(scope_number:, variable_name:, new_value:, call_frame_id:)
201
+ @devtools.send_cmd('Debugger.setVariableValue',
202
+ scopeNumber: scope_number,
203
+ variableName: variable_name,
204
+ newValue: new_value,
205
+ callFrameId: call_frame_id)
206
+ end
207
+
208
+ def step_into(break_on_async_call: nil)
209
+ @devtools.send_cmd('Debugger.stepInto',
210
+ breakOnAsyncCall: break_on_async_call)
211
+ end
212
+
213
+ def step_out
214
+ @devtools.send_cmd('Debugger.stepOut')
215
+ end
216
+
217
+ def step_over
218
+ @devtools.send_cmd('Debugger.stepOver')
219
+ end
220
+
221
+ end # Debugger
222
+ end # DevTools
223
+ end # Selenium