Class: Selenium::DevTools::V85::DOM

Inherits:
Object
  • Object
show all
Defined in:
lib/selenium/devtools/v85/dom.rb

Constant Summary collapse

EVENTS =
{
  attribute_modified: 'attributeModified',
  attribute_removed: 'attributeRemoved',
  character_data_modified: 'characterDataModified',
  child_node_count_updated: 'childNodeCountUpdated',
  child_node_inserted: 'childNodeInserted',
  child_node_removed: 'childNodeRemoved',
  distributed_nodes_updated: 'distributedNodesUpdated',
  document_updated: 'documentUpdated',
  inline_style_invalidated: 'inlineStyleInvalidated',
  pseudo_element_added: 'pseudoElementAdded',
  pseudo_element_removed: 'pseudoElementRemoved',
  set_child_nodes: 'setChildNodes',
  shadow_root_popped: 'shadowRootPopped',
  shadow_root_pushed: 'shadowRootPushed',
}.freeze

Instance Method Summary collapse

Constructor Details

#initialize(devtools) ⇒ DOM

Returns a new instance of DOM.



42
43
44
# File 'lib/selenium/devtools/v85/dom.rb', line 42

def initialize(devtools)
  @devtools = devtools
end

Instance Method Details

#collect_class_names_from_subtree(node_id:) ⇒ Object



51
52
53
54
# File 'lib/selenium/devtools/v85/dom.rb', line 51

def collect_class_names_from_subtree(node_id:)
  @devtools.send_cmd('DOM.collectClassNamesFromSubtree',
                     nodeId: node_id)
end

#copy_to(node_id:, target_node_id:, insert_before_node_id: nil) ⇒ Object



56
57
58
59
60
61
# File 'lib/selenium/devtools/v85/dom.rb', line 56

def copy_to(node_id:, target_node_id:, insert_before_node_id: nil)
  @devtools.send_cmd('DOM.copyTo',
                     nodeId: node_id,
                     targetNodeId: target_node_id,
                     insertBeforeNodeId: insert_before_node_id)
end

#describe_node(node_id: nil, backend_node_id: nil, object_id: nil, depth: nil, pierce: nil) ⇒ Object



63
64
65
66
67
68
69
70
# File 'lib/selenium/devtools/v85/dom.rb', line 63

def describe_node(node_id: nil, backend_node_id: nil, object_id: nil, depth: nil, pierce: nil)
  @devtools.send_cmd('DOM.describeNode',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id,
                     depth: depth,
                     pierce: pierce)
end

#disableObject



80
81
82
# File 'lib/selenium/devtools/v85/dom.rb', line 80

def disable
  @devtools.send_cmd('DOM.disable')
end

#discard_search_results(search_id:) ⇒ Object



84
85
86
87
# File 'lib/selenium/devtools/v85/dom.rb', line 84

def discard_search_results(search_id:)
  @devtools.send_cmd('DOM.discardSearchResults',
                     searchId: search_id)
end

#enableObject



89
90
91
# File 'lib/selenium/devtools/v85/dom.rb', line 89

def enable
  @devtools.send_cmd('DOM.enable')
end

#focus(node_id: nil, backend_node_id: nil, object_id: nil) ⇒ Object



93
94
95
96
97
98
# File 'lib/selenium/devtools/v85/dom.rb', line 93

def focus(node_id: nil, backend_node_id: nil, object_id: nil)
  @devtools.send_cmd('DOM.focus',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id)
end

#get_attributes(node_id:) ⇒ Object



100
101
102
103
# File 'lib/selenium/devtools/v85/dom.rb', line 100

def get_attributes(node_id:)
  @devtools.send_cmd('DOM.getAttributes',
                     nodeId: node_id)
end

#get_box_model(node_id: nil, backend_node_id: nil, object_id: nil) ⇒ Object



105
106
107
108
109
110
# File 'lib/selenium/devtools/v85/dom.rb', line 105

def get_box_model(node_id: nil, backend_node_id: nil, object_id: nil)
  @devtools.send_cmd('DOM.getBoxModel',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id)
end

#get_content_quads(node_id: nil, backend_node_id: nil, object_id: nil) ⇒ Object



112
113
114
115
116
117
# File 'lib/selenium/devtools/v85/dom.rb', line 112

def get_content_quads(node_id: nil, backend_node_id: nil, object_id: nil)
  @devtools.send_cmd('DOM.getContentQuads',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id)
end

#get_document(depth: nil, pierce: nil) ⇒ Object



119
120
121
122
123
# File 'lib/selenium/devtools/v85/dom.rb', line 119

def get_document(depth: nil, pierce: nil)
  @devtools.send_cmd('DOM.getDocument',
                     depth: depth,
                     pierce: pierce)
end

#get_file_info(object_id:) ⇒ Object



276
277
278
279
# File 'lib/selenium/devtools/v85/dom.rb', line 276

def get_file_info(object_id:)
  @devtools.send_cmd('DOM.getFileInfo',
                     objectId: object_id)
end

#get_flattened_document(depth: nil, pierce: nil) ⇒ Object



125
126
127
128
129
# File 'lib/selenium/devtools/v85/dom.rb', line 125

def get_flattened_document(depth: nil, pierce: nil)
  @devtools.send_cmd('DOM.getFlattenedDocument',
                     depth: depth,
                     pierce: pierce)
end

#get_frame_owner(frame_id:) ⇒ Object



308
309
310
311
# File 'lib/selenium/devtools/v85/dom.rb', line 308

def get_frame_owner(frame_id:)
  @devtools.send_cmd('DOM.getFrameOwner',
                     frameId: frame_id)
end

#get_node_for_location(x:, y:, include_user_agent_shadow_dom: nil, ignore_pointer_events_none: nil) ⇒ Object



131
132
133
134
135
136
137
# File 'lib/selenium/devtools/v85/dom.rb', line 131

def get_node_for_location(x:, y:, include_user_agent_shadow_dom: nil, ignore_pointer_events_none: nil)
  @devtools.send_cmd('DOM.getNodeForLocation',
                     x: x,
                     y: y,
                     includeUserAgentShadowDOM: include_user_agent_shadow_dom,
                     ignorePointerEventsNone: ignore_pointer_events_none)
end

#get_node_stack_traces(node_id:) ⇒ Object



271
272
273
274
# File 'lib/selenium/devtools/v85/dom.rb', line 271

def get_node_stack_traces(node_id:)
  @devtools.send_cmd('DOM.getNodeStackTraces',
                     nodeId: node_id)
end

#get_outer_html(node_id: nil, backend_node_id: nil, object_id: nil) ⇒ Object



139
140
141
142
143
144
# File 'lib/selenium/devtools/v85/dom.rb', line 139

def get_outer_html(node_id: nil, backend_node_id: nil, object_id: nil)
  @devtools.send_cmd('DOM.getOuterHTML',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id)
end

#get_relayout_boundary(node_id:) ⇒ Object



146
147
148
149
# File 'lib/selenium/devtools/v85/dom.rb', line 146

def get_relayout_boundary(node_id:)
  @devtools.send_cmd('DOM.getRelayoutBoundary',
                     nodeId: node_id)
end

#get_search_results(search_id:, from_index:, to_index:) ⇒ Object



151
152
153
154
155
156
# File 'lib/selenium/devtools/v85/dom.rb', line 151

def get_search_results(search_id:, from_index:, to_index:)
  @devtools.send_cmd('DOM.getSearchResults',
                     searchId: search_id,
                     fromIndex: from_index,
                     toIndex: to_index)
end

#hide_highlightObject



158
159
160
# File 'lib/selenium/devtools/v85/dom.rb', line 158

def hide_highlight
  @devtools.send_cmd('DOM.hideHighlight')
end

#highlight_nodeObject



162
163
164
# File 'lib/selenium/devtools/v85/dom.rb', line 162

def highlight_node
  @devtools.send_cmd('DOM.highlightNode')
end

#highlight_rectObject



166
167
168
# File 'lib/selenium/devtools/v85/dom.rb', line 166

def highlight_rect
  @devtools.send_cmd('DOM.highlightRect')
end

#mark_undoable_stateObject



170
171
172
# File 'lib/selenium/devtools/v85/dom.rb', line 170

def mark_undoable_state
  @devtools.send_cmd('DOM.markUndoableState')
end

#move_to(node_id:, target_node_id:, insert_before_node_id: nil) ⇒ Object



174
175
176
177
178
179
# File 'lib/selenium/devtools/v85/dom.rb', line 174

def move_to(node_id:, target_node_id:, insert_before_node_id: nil)
  @devtools.send_cmd('DOM.moveTo',
                     nodeId: node_id,
                     targetNodeId: target_node_id,
                     insertBeforeNodeId: insert_before_node_id)
end

#on(event, &block) ⇒ Object



46
47
48
49
# File 'lib/selenium/devtools/v85/dom.rb', line 46

def on(event, &block)
  event = EVENTS[event] if event.is_a?(Symbol)
  @devtools.callbacks["DOM.#{event}"] << block
end

#perform_search(query:, include_user_agent_shadow_dom: nil) ⇒ Object



181
182
183
184
185
# File 'lib/selenium/devtools/v85/dom.rb', line 181

def perform_search(query:, include_user_agent_shadow_dom: nil)
  @devtools.send_cmd('DOM.performSearch',
                     query: query,
                     includeUserAgentShadowDOM: include_user_agent_shadow_dom)
end

#push_node_by_path_to_frontend(path:) ⇒ Object



187
188
189
190
# File 'lib/selenium/devtools/v85/dom.rb', line 187

def push_node_by_path_to_frontend(path:)
  @devtools.send_cmd('DOM.pushNodeByPathToFrontend',
                     path: path)
end

#push_nodes_by_backend_ids_to_frontend(backend_node_ids:) ⇒ Object



192
193
194
195
# File 'lib/selenium/devtools/v85/dom.rb', line 192

def push_nodes_by_backend_ids_to_frontend(backend_node_ids:)
  @devtools.send_cmd('DOM.pushNodesByBackendIdsToFrontend',
                     backendNodeIds: backend_node_ids)
end

#query_selector(node_id:, selector:) ⇒ Object



197
198
199
200
201
# File 'lib/selenium/devtools/v85/dom.rb', line 197

def query_selector(node_id:, selector:)
  @devtools.send_cmd('DOM.querySelector',
                     nodeId: node_id,
                     selector: selector)
end

#query_selector_all(node_id:, selector:) ⇒ Object



203
204
205
206
207
# File 'lib/selenium/devtools/v85/dom.rb', line 203

def query_selector_all(node_id:, selector:)
  @devtools.send_cmd('DOM.querySelectorAll',
                     nodeId: node_id,
                     selector: selector)
end

#redoObject



209
210
211
# File 'lib/selenium/devtools/v85/dom.rb', line 209

def redo
  @devtools.send_cmd('DOM.redo')
end

#remove_attribute(node_id:, name:) ⇒ Object



213
214
215
216
217
# File 'lib/selenium/devtools/v85/dom.rb', line 213

def remove_attribute(node_id:, name:)
  @devtools.send_cmd('DOM.removeAttribute',
                     nodeId: node_id,
                     name: name)
end

#remove_node(node_id:) ⇒ Object



219
220
221
222
# File 'lib/selenium/devtools/v85/dom.rb', line 219

def remove_node(node_id:)
  @devtools.send_cmd('DOM.removeNode',
                     nodeId: node_id)
end

#request_child_nodes(node_id:, depth: nil, pierce: nil) ⇒ Object



224
225
226
227
228
229
# File 'lib/selenium/devtools/v85/dom.rb', line 224

def request_child_nodes(node_id:, depth: nil, pierce: nil)
  @devtools.send_cmd('DOM.requestChildNodes',
                     nodeId: node_id,
                     depth: depth,
                     pierce: pierce)
end

#request_node(object_id:) ⇒ Object



231
232
233
234
# File 'lib/selenium/devtools/v85/dom.rb', line 231

def request_node(object_id:)
  @devtools.send_cmd('DOM.requestNode',
                     objectId: object_id)
end

#resolve_node(node_id: nil, backend_node_id: nil, object_group: nil, execution_context_id: nil) ⇒ Object



236
237
238
239
240
241
242
# File 'lib/selenium/devtools/v85/dom.rb', line 236

def resolve_node(node_id: nil, backend_node_id: nil, object_group: nil, execution_context_id: nil)
  @devtools.send_cmd('DOM.resolveNode',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectGroup: object_group,
                     executionContextId: execution_context_id)
end

#scroll_into_view_if_needed(node_id: nil, backend_node_id: nil, object_id: nil, rect: nil) ⇒ Object



72
73
74
75
76
77
78
# File 'lib/selenium/devtools/v85/dom.rb', line 72

def scroll_into_view_if_needed(node_id: nil, backend_node_id: nil, object_id: nil, rect: nil)
  @devtools.send_cmd('DOM.scrollIntoViewIfNeeded',
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id,
                     rect: rect)
end

#set_attribute_value(node_id:, name:, value:) ⇒ Object



244
245
246
247
248
249
# File 'lib/selenium/devtools/v85/dom.rb', line 244

def set_attribute_value(node_id:, name:, value:)
  @devtools.send_cmd('DOM.setAttributeValue',
                     nodeId: node_id,
                     name: name,
                     value: value)
end

#set_attributes_as_text(node_id:, text:, name: nil) ⇒ Object



251
252
253
254
255
256
# File 'lib/selenium/devtools/v85/dom.rb', line 251

def set_attributes_as_text(node_id:, text:, name: nil)
  @devtools.send_cmd('DOM.setAttributesAsText',
                     nodeId: node_id,
                     text: text,
                     name: name)
end

#set_file_input_files(files:, node_id: nil, backend_node_id: nil, object_id: nil) ⇒ Object



258
259
260
261
262
263
264
# File 'lib/selenium/devtools/v85/dom.rb', line 258

def set_file_input_files(files:, node_id: nil, backend_node_id: nil, object_id: nil)
  @devtools.send_cmd('DOM.setFileInputFiles',
                     files: files,
                     nodeId: node_id,
                     backendNodeId: backend_node_id,
                     objectId: object_id)
end

#set_inspected_node(node_id:) ⇒ Object



281
282
283
284
# File 'lib/selenium/devtools/v85/dom.rb', line 281

def set_inspected_node(node_id:)
  @devtools.send_cmd('DOM.setInspectedNode',
                     nodeId: node_id)
end

#set_node_name(node_id:, name:) ⇒ Object



286
287
288
289
290
# File 'lib/selenium/devtools/v85/dom.rb', line 286

def set_node_name(node_id:, name:)
  @devtools.send_cmd('DOM.setNodeName',
                     nodeId: node_id,
                     name: name)
end

#set_node_stack_traces_enabled(enable:) ⇒ Object



266
267
268
269
# File 'lib/selenium/devtools/v85/dom.rb', line 266

def set_node_stack_traces_enabled(enable:)
  @devtools.send_cmd('DOM.setNodeStackTracesEnabled',
                     enable: enable)
end

#set_node_value(node_id:, value:) ⇒ Object



292
293
294
295
296
# File 'lib/selenium/devtools/v85/dom.rb', line 292

def set_node_value(node_id:, value:)
  @devtools.send_cmd('DOM.setNodeValue',
                     nodeId: node_id,
                     value: value)
end

#set_outer_html(node_id:, outer_html:) ⇒ Object



298
299
300
301
302
# File 'lib/selenium/devtools/v85/dom.rb', line 298

def set_outer_html(node_id:, outer_html:)
  @devtools.send_cmd('DOM.setOuterHTML',
                     nodeId: node_id,
                     outerHTML: outer_html)
end

#undoObject



304
305
306
# File 'lib/selenium/devtools/v85/dom.rb', line 304

def undo
  @devtools.send_cmd('DOM.undo')
end