Uses of Class
org.openqa.selenium.devtools.dom.model.Node
-
Packages that use Node Package Description org.openqa.selenium.devtools.dom org.openqa.selenium.devtools.dom.model -
-
Uses of Node in org.openqa.selenium.devtools.dom
Methods in org.openqa.selenium.devtools.dom that return types with arguments of type Node Modifier and Type Method Description static Command<Node>
DOM. describeNode(java.util.Optional<NodeId> nodeId, java.util.Optional<BackendNodeId> backendNodeId, java.util.Optional<RemoteObjectId> objectId, java.util.Optional<java.lang.Integer> depth, java.util.Optional<java.lang.Boolean> pierce)
Describes node given its id, does not require domain to be enabled.static Command<Node>
DOM. getDocument(java.util.Optional<java.lang.Integer> depth, java.util.Optional<java.lang.Boolean> pierce)
Returns the root DOM node (and optionally the subtree) to the caller.static Command<java.util.List<Node>>
DOM. getFlattenedDocument(java.util.Optional<java.lang.Integer> depth, java.util.Optional<java.lang.Boolean> pierce)
Returns the root DOM node (and optionally the subtree) to the caller. -
Uses of Node in org.openqa.selenium.devtools.dom.model
Methods in org.openqa.selenium.devtools.dom.model that return Node Modifier and Type Method Description Node
ChildNodeInserted. getNode()
Inserted node data.Node
PseudoElementAdded. getPseudoElement()
The added pseudo element.Node
ShadowRootPushed. getRoot()
Shadow root.Methods in org.openqa.selenium.devtools.dom.model that return types with arguments of type Node Modifier and Type Method Description java.util.Optional<java.util.List<Node>>
Node. getChildren()
Child nodes of this node when requested with children.java.util.Optional<Node>
Node. getContentDocument()
Content document for frame owner elements.java.util.Optional<Node>
Node. getImportedDocument()
Import document for the HTMLImport links.java.util.List<Node>
SetChildNodes. getNodes()
Child nodes array.java.util.Optional<java.util.List<Node>>
Node. getPseudoElements()
Pseudo elements associated with this node.java.util.Optional<java.util.List<Node>>
Node. getShadowRoots()
Shadow root list for given element host.java.util.Optional<Node>
Node. getTemplateContent()
Content document fragment for template elements.Constructors in org.openqa.selenium.devtools.dom.model with parameters of type Node Constructor Description ChildNodeInserted(NodeId parentNodeId, NodeId previousNodeId, Node node)
PseudoElementAdded(NodeId parentId, Node pseudoElement)
ShadowRootPushed(NodeId hostId, Node root)
Constructor parameters in org.openqa.selenium.devtools.dom.model with type arguments of type Node Constructor Description SetChildNodes(NodeId parentId, java.util.List<Node> nodes)
-