Uses of Interface
com.gargoylesoftware.htmlunit.html.DomNodeList
-
Packages that use DomNodeList Package Description com.gargoylesoftware.htmlunit Framework classes (contains theWebClientclass which is the main entry point).com.gargoylesoftware.htmlunit.html Classes specific to HTML pages, particularly theHtmlPagewhich represents an HTML document and provides access to its content. -
-
Uses of DomNodeList in com.gargoylesoftware.htmlunit
Methods in com.gargoylesoftware.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 com.gargoylesoftware.htmlunit.html
Classes in com.gargoylesoftware.htmlunit.html that implement DomNodeList Modifier and Type Class Description classAbstractDomNodeList<E extends DomNode>A generic DomNodeList implementation ofNodeList.Methods in com.gargoylesoftware.htmlunit.html that return DomNodeList Modifier and Type Method Description DomNodeList<DomNode>DomNode. getChildNodes()DomNodeList<HtmlElement>DomElement. getElementsByTagName(java.lang.String tagName)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.
-