selenium-devtools 0.99.1 → 0.100.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/lib/selenium/devtools/v100/accessibility.rb +92 -0
  3. data/lib/selenium/devtools/v100/animation.rb +94 -0
  4. data/lib/selenium/devtools/v100/audits.rb +62 -0
  5. data/lib/selenium/devtools/v100/background_service.rb +63 -0
  6. data/lib/selenium/devtools/v100/browser.rb +135 -0
  7. data/lib/selenium/devtools/v100/cache_storage.rb +69 -0
  8. data/lib/selenium/devtools/v100/cast.rb +71 -0
  9. data/lib/selenium/devtools/v100/console.rb +53 -0
  10. data/lib/selenium/devtools/v100/css.rb +189 -0
  11. data/lib/selenium/devtools/v100/database.rb +60 -0
  12. data/lib/selenium/devtools/v100/debugger.rb +220 -0
  13. data/lib/selenium/devtools/v100/device_orientation.rb +49 -0
  14. data/lib/selenium/devtools/v100/dom.rb +335 -0
  15. data/lib/selenium/devtools/v100/dom_debugger.rb +94 -0
  16. data/lib/selenium/devtools/v100/dom_snapshot.rb +63 -0
  17. data/lib/selenium/devtools/v100/dom_storage.rb +75 -0
  18. data/lib/selenium/devtools/v100/emulation.rb +196 -0
  19. data/lib/selenium/devtools/v100/event_breakpoints.rb +48 -0
  20. data/lib/selenium/devtools/v100/fetch.rb +103 -0
  21. data/lib/selenium/devtools/v100/headless_experimental.rb +57 -0
  22. data/lib/selenium/devtools/v100/heap_profiler.rb +105 -0
  23. data/lib/selenium/devtools/v100/indexed_db.rb +96 -0
  24. data/lib/selenium/devtools/v100/input.rb +168 -0
  25. data/lib/selenium/devtools/v100/inspector.rb +51 -0
  26. data/lib/selenium/devtools/v100/io.rb +55 -0
  27. data/lib/selenium/devtools/v100/layer_tree.rb +91 -0
  28. data/lib/selenium/devtools/v100/log.rb +62 -0
  29. data/lib/selenium/devtools/v100/media.rb +53 -0
  30. data/lib/selenium/devtools/v100/memory.rb +82 -0
  31. data/lib/selenium/devtools/v100/network.rb +264 -0
  32. data/lib/selenium/devtools/v100/overlay.rb +202 -0
  33. data/lib/selenium/devtools/v100/page.rb +394 -0
  34. data/lib/selenium/devtools/v100/performance.rb +59 -0
  35. data/lib/selenium/devtools/v100/performance_timeline.rb +46 -0
  36. data/lib/selenium/devtools/v100/profiler.rb +95 -0
  37. data/lib/selenium/devtools/v100/runtime.rb +199 -0
  38. data/lib/selenium/devtools/v100/schema.rb +42 -0
  39. data/lib/selenium/devtools/v100/security.rb +67 -0
  40. data/lib/selenium/devtools/v100/service_worker.rb +112 -0
  41. data/lib/selenium/devtools/v100/storage.rb +118 -0
  42. data/lib/selenium/devtools/v100/system_info.rb +46 -0
  43. data/lib/selenium/devtools/v100/target.rb +146 -0
  44. data/lib/selenium/devtools/v100/tethering.rb +51 -0
  45. data/lib/selenium/devtools/v100/tracing.rb +75 -0
  46. data/lib/selenium/devtools/v100/web_audio.rb +66 -0
  47. data/lib/selenium/devtools/v100/web_authn.rb +96 -0
  48. data/lib/selenium/devtools/v100.rb +1 -0
  49. data/lib/selenium/devtools/version.rb +1 -1
  50. metadata +49 -2
@@ -0,0 +1,189 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ module V100
24
+ class CSS
25
+ EVENTS = {
26
+ fonts_updated: 'fontsUpdated',
27
+ media_query_result_changed: 'mediaQueryResultChanged',
28
+ style_sheet_added: 'styleSheetAdded',
29
+ style_sheet_changed: 'styleSheetChanged',
30
+ style_sheet_removed: 'styleSheetRemoved',
31
+ }.freeze
32
+
33
+ def initialize(devtools)
34
+ @devtools = devtools
35
+ end
36
+
37
+ def on(event, &block)
38
+ event = EVENTS[event] if event.is_a?(Symbol)
39
+ @devtools.callbacks["CSS.#{event}"] << block
40
+ end
41
+
42
+ def add_rule(style_sheet_id:, rule_text:, location:)
43
+ @devtools.send_cmd('CSS.addRule',
44
+ styleSheetId: style_sheet_id,
45
+ ruleText: rule_text,
46
+ location: location)
47
+ end
48
+
49
+ def collect_class_names(style_sheet_id:)
50
+ @devtools.send_cmd('CSS.collectClassNames',
51
+ styleSheetId: style_sheet_id)
52
+ end
53
+
54
+ def create_style_sheet(frame_id:)
55
+ @devtools.send_cmd('CSS.createStyleSheet',
56
+ frameId: frame_id)
57
+ end
58
+
59
+ def disable
60
+ @devtools.send_cmd('CSS.disable')
61
+ end
62
+
63
+ def enable
64
+ @devtools.send_cmd('CSS.enable')
65
+ end
66
+
67
+ def force_pseudo_state(node_id:, forced_pseudo_classes:)
68
+ @devtools.send_cmd('CSS.forcePseudoState',
69
+ nodeId: node_id,
70
+ forcedPseudoClasses: forced_pseudo_classes)
71
+ end
72
+
73
+ def get_background_colors(node_id:)
74
+ @devtools.send_cmd('CSS.getBackgroundColors',
75
+ nodeId: node_id)
76
+ end
77
+
78
+ def get_computed_style_for_node(node_id:)
79
+ @devtools.send_cmd('CSS.getComputedStyleForNode',
80
+ nodeId: node_id)
81
+ end
82
+
83
+ def get_inline_styles_for_node(node_id:)
84
+ @devtools.send_cmd('CSS.getInlineStylesForNode',
85
+ nodeId: node_id)
86
+ end
87
+
88
+ def get_matched_styles_for_node(node_id:)
89
+ @devtools.send_cmd('CSS.getMatchedStylesForNode',
90
+ nodeId: node_id)
91
+ end
92
+
93
+ def get_media_queries
94
+ @devtools.send_cmd('CSS.getMediaQueries')
95
+ end
96
+
97
+ def get_platform_fonts_for_node(node_id:)
98
+ @devtools.send_cmd('CSS.getPlatformFontsForNode',
99
+ nodeId: node_id)
100
+ end
101
+
102
+ def get_style_sheet_text(style_sheet_id:)
103
+ @devtools.send_cmd('CSS.getStyleSheetText',
104
+ styleSheetId: style_sheet_id)
105
+ end
106
+
107
+ def track_computed_style_updates(properties_to_track:)
108
+ @devtools.send_cmd('CSS.trackComputedStyleUpdates',
109
+ propertiesToTrack: properties_to_track)
110
+ end
111
+
112
+ def take_computed_style_updates
113
+ @devtools.send_cmd('CSS.takeComputedStyleUpdates')
114
+ end
115
+
116
+ def set_effective_property_value_for_node(node_id:, property_name:, value:)
117
+ @devtools.send_cmd('CSS.setEffectivePropertyValueForNode',
118
+ nodeId: node_id,
119
+ propertyName: property_name,
120
+ value: value)
121
+ end
122
+
123
+ def set_keyframe_key(style_sheet_id:, range:, key_text:)
124
+ @devtools.send_cmd('CSS.setKeyframeKey',
125
+ styleSheetId: style_sheet_id,
126
+ range: range,
127
+ keyText: key_text)
128
+ end
129
+
130
+ def set_media_text(style_sheet_id:, range:, text:)
131
+ @devtools.send_cmd('CSS.setMediaText',
132
+ styleSheetId: style_sheet_id,
133
+ range: range,
134
+ text: text)
135
+ end
136
+
137
+ def set_container_query_text(style_sheet_id:, range:, text:)
138
+ @devtools.send_cmd('CSS.setContainerQueryText',
139
+ styleSheetId: style_sheet_id,
140
+ range: range,
141
+ text: text)
142
+ end
143
+
144
+ def set_supports_text(style_sheet_id:, range:, text:)
145
+ @devtools.send_cmd('CSS.setSupportsText',
146
+ styleSheetId: style_sheet_id,
147
+ range: range,
148
+ text: text)
149
+ end
150
+
151
+ def set_rule_selector(style_sheet_id:, range:, selector:)
152
+ @devtools.send_cmd('CSS.setRuleSelector',
153
+ styleSheetId: style_sheet_id,
154
+ range: range,
155
+ selector: selector)
156
+ end
157
+
158
+ def set_style_sheet_text(style_sheet_id:, text:)
159
+ @devtools.send_cmd('CSS.setStyleSheetText',
160
+ styleSheetId: style_sheet_id,
161
+ text: text)
162
+ end
163
+
164
+ def set_style_texts(edits:)
165
+ @devtools.send_cmd('CSS.setStyleTexts',
166
+ edits: edits)
167
+ end
168
+
169
+ def start_rule_usage_tracking
170
+ @devtools.send_cmd('CSS.startRuleUsageTracking')
171
+ end
172
+
173
+ def stop_rule_usage_tracking
174
+ @devtools.send_cmd('CSS.stopRuleUsageTracking')
175
+ end
176
+
177
+ def take_coverage_delta
178
+ @devtools.send_cmd('CSS.takeCoverageDelta')
179
+ end
180
+
181
+ def set_local_fonts_enabled(enabled:)
182
+ @devtools.send_cmd('CSS.setLocalFontsEnabled',
183
+ enabled: enabled)
184
+ end
185
+
186
+ end # CSS
187
+ end # V100
188
+ end # DevTools
189
+ end # Selenium
@@ -0,0 +1,60 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ module V100
24
+ class Database
25
+ EVENTS = {
26
+ add_database: 'addDatabase',
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["Database.#{event}"] << block
36
+ end
37
+
38
+ def disable
39
+ @devtools.send_cmd('Database.disable')
40
+ end
41
+
42
+ def enable
43
+ @devtools.send_cmd('Database.enable')
44
+ end
45
+
46
+ def execute_sql(database_id:, query:)
47
+ @devtools.send_cmd('Database.executeSQL',
48
+ databaseId: database_id,
49
+ query: query)
50
+ end
51
+
52
+ def get_database_table_names(database_id:)
53
+ @devtools.send_cmd('Database.getDatabaseTableNames',
54
+ databaseId: database_id)
55
+ end
56
+
57
+ end # Database
58
+ end # V100
59
+ end # DevTools
60
+ end # Selenium
@@ -0,0 +1,220 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Licensed to the Software Freedom Conservancy (SFC) under one
4
+ # or more contributor license agreements. See the NOTICE file
5
+ # distributed with this work for additional information
6
+ # regarding copyright ownership. The SFC licenses this file
7
+ # to you under the Apache License, Version 2.0 (the
8
+ # "License"); you may not use this file except in compliance
9
+ # with the License. You may obtain a copy of the License at
10
+ #
11
+ # http://www.apache.org/licenses/LICENSE-2.0
12
+ #
13
+ # Unless required by applicable law or agreed to in writing,
14
+ # software distributed under the License is distributed on an
15
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16
+ # KIND, either express or implied. See the License for the
17
+ # specific language governing permissions and limitations
18
+ # under the License.
19
+
20
+ # This file is automatically generated. Any changes will be lost!
21
+ module Selenium
22
+ module DevTools
23
+ module V100
24
+ class Debugger
25
+ EVENTS = {
26
+ breakpoint_resolved: 'breakpointResolved',
27
+ paused: 'paused',
28
+ resumed: 'resumed',
29
+ script_failed_to_parse: 'scriptFailedToParse',
30
+ script_parsed: 'scriptParsed',
31
+ }.freeze
32
+
33
+ def initialize(devtools)
34
+ @devtools = devtools
35
+ end
36
+
37
+ def on(event, &block)
38
+ event = EVENTS[event] if event.is_a?(Symbol)
39
+ @devtools.callbacks["Debugger.#{event}"] << block
40
+ end
41
+
42
+ def continue_to_location(location:, target_call_frames: nil)
43
+ @devtools.send_cmd('Debugger.continueToLocation',
44
+ location: location,
45
+ targetCallFrames: target_call_frames)
46
+ end
47
+
48
+ def disable
49
+ @devtools.send_cmd('Debugger.disable')
50
+ end
51
+
52
+ def enable(max_scripts_cache_size: nil)
53
+ @devtools.send_cmd('Debugger.enable',
54
+ maxScriptsCacheSize: max_scripts_cache_size)
55
+ end
56
+
57
+ 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)
58
+ @devtools.send_cmd('Debugger.evaluateOnCallFrame',
59
+ callFrameId: call_frame_id,
60
+ expression: expression,
61
+ objectGroup: object_group,
62
+ includeCommandLineAPI: include_command_line_api,
63
+ silent: silent,
64
+ returnByValue: return_by_value,
65
+ generatePreview: generate_preview,
66
+ throwOnSideEffect: throw_on_side_effect,
67
+ timeout: timeout)
68
+ end
69
+
70
+ def get_possible_breakpoints(start:, _end: nil, restrict_to_function: nil)
71
+ @devtools.send_cmd('Debugger.getPossibleBreakpoints',
72
+ start: start,
73
+ end: _end,
74
+ restrictToFunction: restrict_to_function)
75
+ end
76
+
77
+ def get_script_source(script_id:)
78
+ @devtools.send_cmd('Debugger.getScriptSource',
79
+ scriptId: script_id)
80
+ end
81
+
82
+ def get_wasm_bytecode(script_id:)
83
+ @devtools.send_cmd('Debugger.getWasmBytecode',
84
+ scriptId: script_id)
85
+ end
86
+
87
+ def get_stack_trace(stack_trace_id:)
88
+ @devtools.send_cmd('Debugger.getStackTrace',
89
+ stackTraceId: stack_trace_id)
90
+ end
91
+
92
+ def pause
93
+ @devtools.send_cmd('Debugger.pause')
94
+ end
95
+
96
+ def pause_on_async_call(parent_stack_trace_id:)
97
+ @devtools.send_cmd('Debugger.pauseOnAsyncCall',
98
+ parentStackTraceId: parent_stack_trace_id)
99
+ end
100
+
101
+ def remove_breakpoint(breakpoint_id:)
102
+ @devtools.send_cmd('Debugger.removeBreakpoint',
103
+ breakpointId: breakpoint_id)
104
+ end
105
+
106
+ def restart_frame(call_frame_id:)
107
+ @devtools.send_cmd('Debugger.restartFrame',
108
+ callFrameId: call_frame_id)
109
+ end
110
+
111
+ def resume(terminate_on_resume: nil)
112
+ @devtools.send_cmd('Debugger.resume',
113
+ terminateOnResume: terminate_on_resume)
114
+ end
115
+
116
+ def search_in_content(script_id:, query:, case_sensitive: nil, is_regex: nil)
117
+ @devtools.send_cmd('Debugger.searchInContent',
118
+ scriptId: script_id,
119
+ query: query,
120
+ caseSensitive: case_sensitive,
121
+ isRegex: is_regex)
122
+ end
123
+
124
+ def set_async_call_stack_depth(max_depth:)
125
+ @devtools.send_cmd('Debugger.setAsyncCallStackDepth',
126
+ maxDepth: max_depth)
127
+ end
128
+
129
+ def set_blackbox_patterns(patterns:)
130
+ @devtools.send_cmd('Debugger.setBlackboxPatterns',
131
+ patterns: patterns)
132
+ end
133
+
134
+ def set_blackboxed_ranges(script_id:, positions:)
135
+ @devtools.send_cmd('Debugger.setBlackboxedRanges',
136
+ scriptId: script_id,
137
+ positions: positions)
138
+ end
139
+
140
+ def set_breakpoint(location:, condition: nil)
141
+ @devtools.send_cmd('Debugger.setBreakpoint',
142
+ location: location,
143
+ condition: condition)
144
+ end
145
+
146
+ def set_instrumentation_breakpoint(instrumentation:)
147
+ @devtools.send_cmd('Debugger.setInstrumentationBreakpoint',
148
+ instrumentation: instrumentation)
149
+ end
150
+
151
+ def set_breakpoint_by_url(line_number:, url: nil, url_regex: nil, script_hash: nil, column_number: nil, condition: nil)
152
+ @devtools.send_cmd('Debugger.setBreakpointByUrl',
153
+ lineNumber: line_number,
154
+ url: url,
155
+ urlRegex: url_regex,
156
+ scriptHash: script_hash,
157
+ columnNumber: column_number,
158
+ condition: condition)
159
+ end
160
+
161
+ def set_breakpoint_on_function_call(object_id:, condition: nil)
162
+ @devtools.send_cmd('Debugger.setBreakpointOnFunctionCall',
163
+ objectId: object_id,
164
+ condition: condition)
165
+ end
166
+
167
+ def set_breakpoints_active(active:)
168
+ @devtools.send_cmd('Debugger.setBreakpointsActive',
169
+ active: active)
170
+ end
171
+
172
+ def set_pause_on_exceptions(state:)
173
+ @devtools.send_cmd('Debugger.setPauseOnExceptions',
174
+ state: state)
175
+ end
176
+
177
+ def set_return_value(new_value:)
178
+ @devtools.send_cmd('Debugger.setReturnValue',
179
+ newValue: new_value)
180
+ end
181
+
182
+ def set_script_source(script_id:, script_source:, dry_run: nil)
183
+ @devtools.send_cmd('Debugger.setScriptSource',
184
+ scriptId: script_id,
185
+ scriptSource: script_source,
186
+ dryRun: dry_run)
187
+ end
188
+
189
+ def set_skip_all_pauses(skip:)
190
+ @devtools.send_cmd('Debugger.setSkipAllPauses',
191
+ skip: skip)
192
+ end
193
+
194
+ def set_variable_value(scope_number:, variable_name:, new_value:, call_frame_id:)
195
+ @devtools.send_cmd('Debugger.setVariableValue',
196
+ scopeNumber: scope_number,
197
+ variableName: variable_name,
198
+ newValue: new_value,
199
+ callFrameId: call_frame_id)
200
+ end
201
+
202
+ def step_into(break_on_async_call: nil, skip_list: nil)
203
+ @devtools.send_cmd('Debugger.stepInto',
204
+ breakOnAsyncCall: break_on_async_call,
205
+ skipList: skip_list)
206
+ end
207
+
208
+ def step_out
209
+ @devtools.send_cmd('Debugger.stepOut')
210
+ end
211
+
212
+ def step_over(skip_list: nil)
213
+ @devtools.send_cmd('Debugger.stepOver',
214
+ skipList: skip_list)
215
+ end
216
+
217
+ end # Debugger
218
+ end # V100
219
+ end # DevTools
220
+ 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
+ module V100
24
+ class DeviceOrientation
25
+
26
+ def initialize(devtools)
27
+ @devtools = devtools
28
+ end
29
+
30
+ def on(event, &block)
31
+ event = EVENTS[event] if event.is_a?(Symbol)
32
+ @devtools.callbacks["DeviceOrientation.#{event}"] << block
33
+ end
34
+
35
+ def clear_device_orientation_override
36
+ @devtools.send_cmd('DeviceOrientation.clearDeviceOrientationOverride')
37
+ end
38
+
39
+ def set_device_orientation_override(alpha:, beta:, gamma:)
40
+ @devtools.send_cmd('DeviceOrientation.setDeviceOrientationOverride',
41
+ alpha: alpha,
42
+ beta: beta,
43
+ gamma: gamma)
44
+ end
45
+
46
+ end # DeviceOrientation
47
+ end # V100
48
+ end # DevTools
49
+ end # Selenium