Uses of Interface
org.htmlunit.html.DomNodeList
-
Packages that use DomNodeList Package Description org.htmlunit Framework classes (contains theWebClient
class which is the main entry point).org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content. -
-
Uses of DomNodeList in org.htmlunit
Methods in org.htmlunit that return DomNodeList Modifier and Type Method Description DomNodeList<DomElement>
SgmlPage. getElementsByTagName(java.lang.String tagName)
DomNodeList<DomElement>
SgmlPage. getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
-
Uses of DomNodeList in org.htmlunit.html
Classes in org.htmlunit.html that implement DomNodeList Modifier and Type Class Description class
AbstractDomNodeList<E extends DomNode>
A generic DomNodeList implementation ofNodeList
.(package private) class
SiblingDomNodeList
An implementation of DomNodeList that is much less expensive for iteration.(package private) class
StaticDomNodeList
An implementation of DomNodeList that is static.Methods in org.htmlunit.html that return DomNodeList Modifier and Type Method Description DomNodeList<DomNode>
DomNode. getChildNodes()
DomNodeList<HtmlElement>
DomElement. getElementsByTagName(java.lang.String tagName)
(package private) <E extends HtmlElement>
DomNodeList<E>DomElement. getElementsByTagNameImpl(java.lang.String tagName)
This should beDomElement.getElementsByTagName(String)
, but is separate because of the type erasure in Java.DomNodeList<HtmlElement>
DomElement. getElementsByTagNameNS(java.lang.String namespace, java.lang.String localName)
Not yet implemented.DomNodeList<DomNode>
DomNode. querySelectorAll(java.lang.String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector within the supplied selector strings.
-