selenium-devtools 0.103.0 → 0.105.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 (101) hide show
  1. checksums.yaml +4 -4
  2. data/lib/selenium/devtools/v101/web_authn.rb +2 -2
  3. data/lib/selenium/devtools/v102/web_authn.rb +2 -2
  4. data/lib/selenium/devtools/v104/accessibility.rb +91 -0
  5. data/lib/selenium/devtools/v104/animation.rb +94 -0
  6. data/lib/selenium/devtools/v104/audits.rb +62 -0
  7. data/lib/selenium/devtools/v104/background_service.rb +63 -0
  8. data/lib/selenium/devtools/v104/browser.rb +135 -0
  9. data/lib/selenium/devtools/v104/cache_storage.rb +69 -0
  10. data/lib/selenium/devtools/v104/cast.rb +71 -0
  11. data/lib/selenium/devtools/v104/console.rb +53 -0
  12. data/lib/selenium/devtools/v104/css.rb +194 -0
  13. data/lib/selenium/devtools/v104/database.rb +60 -0
  14. data/lib/selenium/devtools/v104/debugger.rb +221 -0
  15. data/lib/selenium/devtools/v104/device_orientation.rb +49 -0
  16. data/lib/selenium/devtools/v104/dom.rb +335 -0
  17. data/lib/selenium/devtools/v104/dom_debugger.rb +94 -0
  18. data/lib/selenium/devtools/v104/dom_snapshot.rb +63 -0
  19. data/lib/selenium/devtools/v104/dom_storage.rb +75 -0
  20. data/lib/selenium/devtools/v104/emulation.rb +206 -0
  21. data/lib/selenium/devtools/v104/event_breakpoints.rb +48 -0
  22. data/lib/selenium/devtools/v104/fetch.rb +103 -0
  23. data/lib/selenium/devtools/v104/headless_experimental.rb +57 -0
  24. data/lib/selenium/devtools/v104/heap_profiler.rb +107 -0
  25. data/lib/selenium/devtools/v104/indexed_db.rb +96 -0
  26. data/lib/selenium/devtools/v104/input.rb +168 -0
  27. data/lib/selenium/devtools/v104/inspector.rb +51 -0
  28. data/lib/selenium/devtools/v104/io.rb +55 -0
  29. data/lib/selenium/devtools/v104/layer_tree.rb +91 -0
  30. data/lib/selenium/devtools/v104/log.rb +62 -0
  31. data/lib/selenium/devtools/v104/media.rb +53 -0
  32. data/lib/selenium/devtools/v104/memory.rb +82 -0
  33. data/lib/selenium/devtools/v104/network.rb +264 -0
  34. data/lib/selenium/devtools/v104/overlay.rb +202 -0
  35. data/lib/selenium/devtools/v104/page.rb +394 -0
  36. data/lib/selenium/devtools/v104/performance.rb +59 -0
  37. data/lib/selenium/devtools/v104/performance_timeline.rb +46 -0
  38. data/lib/selenium/devtools/v104/profiler.rb +95 -0
  39. data/lib/selenium/devtools/v104/runtime.rb +201 -0
  40. data/lib/selenium/devtools/v104/schema.rb +42 -0
  41. data/lib/selenium/devtools/v104/security.rb +67 -0
  42. data/lib/selenium/devtools/v104/service_worker.rb +112 -0
  43. data/lib/selenium/devtools/v104/storage.rb +123 -0
  44. data/lib/selenium/devtools/v104/system_info.rb +46 -0
  45. data/lib/selenium/devtools/v104/target.rb +146 -0
  46. data/lib/selenium/devtools/v104/tethering.rb +51 -0
  47. data/lib/selenium/devtools/v104/tracing.rb +75 -0
  48. data/lib/selenium/devtools/v104/web_audio.rb +66 -0
  49. data/lib/selenium/devtools/v104/web_authn.rb +97 -0
  50. data/lib/selenium/devtools/v104.rb +1 -0
  51. data/lib/selenium/devtools/v105/accessibility.rb +91 -0
  52. data/lib/selenium/devtools/v105/animation.rb +94 -0
  53. data/lib/selenium/devtools/v105/audits.rb +62 -0
  54. data/lib/selenium/devtools/v105/background_service.rb +63 -0
  55. data/lib/selenium/devtools/v105/browser.rb +135 -0
  56. data/lib/selenium/devtools/v105/cache_storage.rb +69 -0
  57. data/lib/selenium/devtools/v105/cast.rb +71 -0
  58. data/lib/selenium/devtools/v105/console.rb +53 -0
  59. data/lib/selenium/devtools/v105/css.rb +201 -0
  60. data/lib/selenium/devtools/v105/database.rb +60 -0
  61. data/lib/selenium/devtools/v105/debugger.rb +232 -0
  62. data/lib/selenium/devtools/v105/device_orientation.rb +49 -0
  63. data/lib/selenium/devtools/v105/dom.rb +340 -0
  64. data/lib/selenium/devtools/v105/dom_debugger.rb +94 -0
  65. data/lib/selenium/devtools/v105/dom_snapshot.rb +63 -0
  66. data/lib/selenium/devtools/v105/dom_storage.rb +75 -0
  67. data/lib/selenium/devtools/v105/emulation.rb +206 -0
  68. data/lib/selenium/devtools/v105/event_breakpoints.rb +48 -0
  69. data/lib/selenium/devtools/v105/fetch.rb +103 -0
  70. data/lib/selenium/devtools/v105/headless_experimental.rb +57 -0
  71. data/lib/selenium/devtools/v105/heap_profiler.rb +107 -0
  72. data/lib/selenium/devtools/v105/indexed_db.rb +96 -0
  73. data/lib/selenium/devtools/v105/input.rb +168 -0
  74. data/lib/selenium/devtools/v105/inspector.rb +51 -0
  75. data/lib/selenium/devtools/v105/io.rb +55 -0
  76. data/lib/selenium/devtools/v105/layer_tree.rb +91 -0
  77. data/lib/selenium/devtools/v105/log.rb +62 -0
  78. data/lib/selenium/devtools/v105/media.rb +53 -0
  79. data/lib/selenium/devtools/v105/memory.rb +82 -0
  80. data/lib/selenium/devtools/v105/network.rb +264 -0
  81. data/lib/selenium/devtools/v105/overlay.rb +202 -0
  82. data/lib/selenium/devtools/v105/page.rb +394 -0
  83. data/lib/selenium/devtools/v105/performance.rb +59 -0
  84. data/lib/selenium/devtools/v105/performance_timeline.rb +46 -0
  85. data/lib/selenium/devtools/v105/profiler.rb +95 -0
  86. data/lib/selenium/devtools/v105/runtime.rb +201 -0
  87. data/lib/selenium/devtools/v105/schema.rb +42 -0
  88. data/lib/selenium/devtools/v105/security.rb +67 -0
  89. data/lib/selenium/devtools/v105/service_worker.rb +112 -0
  90. data/lib/selenium/devtools/v105/storage.rb +129 -0
  91. data/lib/selenium/devtools/v105/system_info.rb +46 -0
  92. data/lib/selenium/devtools/v105/target.rb +146 -0
  93. data/lib/selenium/devtools/v105/tethering.rb +51 -0
  94. data/lib/selenium/devtools/v105/tracing.rb +75 -0
  95. data/lib/selenium/devtools/v105/web_audio.rb +66 -0
  96. data/lib/selenium/devtools/v105/web_authn.rb +97 -0
  97. data/lib/selenium/devtools/v105.rb +1 -0
  98. data/lib/selenium/devtools/version.rb +1 -1
  99. data/lib/selenium/devtools.rb +0 -2
  100. data/selenium-devtools.gemspec +2 -0
  101. metadata +112 -4
@@ -0,0 +1,194 @@
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 V104
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 get_layers_for_node(node_id:)
108
+ @devtools.send_cmd('CSS.getLayersForNode',
109
+ nodeId: node_id)
110
+ end
111
+
112
+ def track_computed_style_updates(properties_to_track:)
113
+ @devtools.send_cmd('CSS.trackComputedStyleUpdates',
114
+ propertiesToTrack: properties_to_track)
115
+ end
116
+
117
+ def take_computed_style_updates
118
+ @devtools.send_cmd('CSS.takeComputedStyleUpdates')
119
+ end
120
+
121
+ def set_effective_property_value_for_node(node_id:, property_name:, value:)
122
+ @devtools.send_cmd('CSS.setEffectivePropertyValueForNode',
123
+ nodeId: node_id,
124
+ propertyName: property_name,
125
+ value: value)
126
+ end
127
+
128
+ def set_keyframe_key(style_sheet_id:, range:, key_text:)
129
+ @devtools.send_cmd('CSS.setKeyframeKey',
130
+ styleSheetId: style_sheet_id,
131
+ range: range,
132
+ keyText: key_text)
133
+ end
134
+
135
+ def set_media_text(style_sheet_id:, range:, text:)
136
+ @devtools.send_cmd('CSS.setMediaText',
137
+ styleSheetId: style_sheet_id,
138
+ range: range,
139
+ text: text)
140
+ end
141
+
142
+ def set_container_query_text(style_sheet_id:, range:, text:)
143
+ @devtools.send_cmd('CSS.setContainerQueryText',
144
+ styleSheetId: style_sheet_id,
145
+ range: range,
146
+ text: text)
147
+ end
148
+
149
+ def set_supports_text(style_sheet_id:, range:, text:)
150
+ @devtools.send_cmd('CSS.setSupportsText',
151
+ styleSheetId: style_sheet_id,
152
+ range: range,
153
+ text: text)
154
+ end
155
+
156
+ def set_rule_selector(style_sheet_id:, range:, selector:)
157
+ @devtools.send_cmd('CSS.setRuleSelector',
158
+ styleSheetId: style_sheet_id,
159
+ range: range,
160
+ selector: selector)
161
+ end
162
+
163
+ def set_style_sheet_text(style_sheet_id:, text:)
164
+ @devtools.send_cmd('CSS.setStyleSheetText',
165
+ styleSheetId: style_sheet_id,
166
+ text: text)
167
+ end
168
+
169
+ def set_style_texts(edits:)
170
+ @devtools.send_cmd('CSS.setStyleTexts',
171
+ edits: edits)
172
+ end
173
+
174
+ def start_rule_usage_tracking
175
+ @devtools.send_cmd('CSS.startRuleUsageTracking')
176
+ end
177
+
178
+ def stop_rule_usage_tracking
179
+ @devtools.send_cmd('CSS.stopRuleUsageTracking')
180
+ end
181
+
182
+ def take_coverage_delta
183
+ @devtools.send_cmd('CSS.takeCoverageDelta')
184
+ end
185
+
186
+ def set_local_fonts_enabled(enabled:)
187
+ @devtools.send_cmd('CSS.setLocalFontsEnabled',
188
+ enabled: enabled)
189
+ end
190
+
191
+ end # CSS
192
+ end # V104
193
+ end # DevTools
194
+ 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 V104
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 # V104
59
+ end # DevTools
60
+ end # Selenium
@@ -0,0 +1,221 @@
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 V104
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:, mode: nil)
107
+ @devtools.send_cmd('Debugger.restartFrame',
108
+ callFrameId: call_frame_id,
109
+ mode: mode)
110
+ end
111
+
112
+ def resume(terminate_on_resume: nil)
113
+ @devtools.send_cmd('Debugger.resume',
114
+ terminateOnResume: terminate_on_resume)
115
+ end
116
+
117
+ def search_in_content(script_id:, query:, case_sensitive: nil, is_regex: nil)
118
+ @devtools.send_cmd('Debugger.searchInContent',
119
+ scriptId: script_id,
120
+ query: query,
121
+ caseSensitive: case_sensitive,
122
+ isRegex: is_regex)
123
+ end
124
+
125
+ def set_async_call_stack_depth(max_depth:)
126
+ @devtools.send_cmd('Debugger.setAsyncCallStackDepth',
127
+ maxDepth: max_depth)
128
+ end
129
+
130
+ def set_blackbox_patterns(patterns:)
131
+ @devtools.send_cmd('Debugger.setBlackboxPatterns',
132
+ patterns: patterns)
133
+ end
134
+
135
+ def set_blackboxed_ranges(script_id:, positions:)
136
+ @devtools.send_cmd('Debugger.setBlackboxedRanges',
137
+ scriptId: script_id,
138
+ positions: positions)
139
+ end
140
+
141
+ def set_breakpoint(location:, condition: nil)
142
+ @devtools.send_cmd('Debugger.setBreakpoint',
143
+ location: location,
144
+ condition: condition)
145
+ end
146
+
147
+ def set_instrumentation_breakpoint(instrumentation:)
148
+ @devtools.send_cmd('Debugger.setInstrumentationBreakpoint',
149
+ instrumentation: instrumentation)
150
+ end
151
+
152
+ def set_breakpoint_by_url(line_number:, url: nil, url_regex: nil, script_hash: nil, column_number: nil, condition: nil)
153
+ @devtools.send_cmd('Debugger.setBreakpointByUrl',
154
+ lineNumber: line_number,
155
+ url: url,
156
+ urlRegex: url_regex,
157
+ scriptHash: script_hash,
158
+ columnNumber: column_number,
159
+ condition: condition)
160
+ end
161
+
162
+ def set_breakpoint_on_function_call(object_id:, condition: nil)
163
+ @devtools.send_cmd('Debugger.setBreakpointOnFunctionCall',
164
+ objectId: object_id,
165
+ condition: condition)
166
+ end
167
+
168
+ def set_breakpoints_active(active:)
169
+ @devtools.send_cmd('Debugger.setBreakpointsActive',
170
+ active: active)
171
+ end
172
+
173
+ def set_pause_on_exceptions(state:)
174
+ @devtools.send_cmd('Debugger.setPauseOnExceptions',
175
+ state: state)
176
+ end
177
+
178
+ def set_return_value(new_value:)
179
+ @devtools.send_cmd('Debugger.setReturnValue',
180
+ newValue: new_value)
181
+ end
182
+
183
+ def set_script_source(script_id:, script_source:, dry_run: nil)
184
+ @devtools.send_cmd('Debugger.setScriptSource',
185
+ scriptId: script_id,
186
+ scriptSource: script_source,
187
+ dryRun: dry_run)
188
+ end
189
+
190
+ def set_skip_all_pauses(skip:)
191
+ @devtools.send_cmd('Debugger.setSkipAllPauses',
192
+ skip: skip)
193
+ end
194
+
195
+ def set_variable_value(scope_number:, variable_name:, new_value:, call_frame_id:)
196
+ @devtools.send_cmd('Debugger.setVariableValue',
197
+ scopeNumber: scope_number,
198
+ variableName: variable_name,
199
+ newValue: new_value,
200
+ callFrameId: call_frame_id)
201
+ end
202
+
203
+ def step_into(break_on_async_call: nil, skip_list: nil)
204
+ @devtools.send_cmd('Debugger.stepInto',
205
+ breakOnAsyncCall: break_on_async_call,
206
+ skipList: skip_list)
207
+ end
208
+
209
+ def step_out
210
+ @devtools.send_cmd('Debugger.stepOut')
211
+ end
212
+
213
+ def step_over(skip_list: nil)
214
+ @devtools.send_cmd('Debugger.stepOver',
215
+ skipList: skip_list)
216
+ end
217
+
218
+ end # Debugger
219
+ end # V104
220
+ end # DevTools
221
+ 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 V104
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 # V104
48
+ end # DevTools
49
+ end # Selenium