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
Node. getContentDocument()
Content document for frame owner elements.Node
Node. getImportedDocument()
Import document for the HTMLImport links.Node
ChildNodeInserted. getNode()
Inserted node data.Node
PseudoElementAdded. getPseudoElement()
The added pseudo element.Node
ShadowRootPushed. getRoot()
Shadow root.Node
Node. getTemplateContent()
Content document fragment for template elements.Methods in org.openqa.selenium.devtools.dom.model that return types with arguments of type Node Modifier and Type Method Description java.util.List<Node>
Node. getChildren()
Child nodes of this node when requested with children.java.util.List<Node>
SetChildNodes. getNodes()
Child nodes array.java.util.List<Node>
Node. getPseudoElements()
Pseudo elements associated with this node.java.util.List<Node>
Node. getShadowRoots()
Shadow root list for given element host.Constructors in org.openqa.selenium.devtools.dom.model with parameters of type Node Constructor Description ChildNodeInserted(NodeId parentNodeId, NodeId previousNodeId, Node node)
Node(NodeId nodeId, NodeId parentId, BackendNodeId backendNodeId, java.lang.Integer nodeType, java.lang.String nodeName, java.lang.String localName, java.lang.String nodeValue, java.lang.Integer childNodeCount, java.util.List<Node> children, java.util.List<java.lang.String> attributes, java.lang.String documentURL, java.lang.String baseURL, java.lang.String publicId, java.lang.String systemId, java.lang.String internalSubset, java.lang.String xmlVersion, java.lang.String name, java.lang.String value, PseudoType pseudoType, ShadowRootType shadowRootType, FrameId frameId, Node contentDocument, java.util.List<Node> shadowRoots, Node templateContent, java.util.List<Node> pseudoElements, Node importedDocument, java.util.List<BackendNode> distributedNodes, java.lang.Boolean isSVG)
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 Node(NodeId nodeId, NodeId parentId, BackendNodeId backendNodeId, java.lang.Integer nodeType, java.lang.String nodeName, java.lang.String localName, java.lang.String nodeValue, java.lang.Integer childNodeCount, java.util.List<Node> children, java.util.List<java.lang.String> attributes, java.lang.String documentURL, java.lang.String baseURL, java.lang.String publicId, java.lang.String systemId, java.lang.String internalSubset, java.lang.String xmlVersion, java.lang.String name, java.lang.String value, PseudoType pseudoType, ShadowRootType shadowRootType, FrameId frameId, Node contentDocument, java.util.List<Node> shadowRoots, Node templateContent, java.util.List<Node> pseudoElements, Node importedDocument, java.util.List<BackendNode> distributedNodes, java.lang.Boolean isSVG)
SetChildNodes(NodeId parentId, java.util.List<Node> nodes)
-