Package | Description |
---|---|
com.gargoylesoftware.htmlunit.html |
Classes specific to HTML pages, particularly the HtmlPage which represents
an HTML document and provides access to its content.
|
Modifier and Type | Method and Description |
---|---|
DomNodeList<DomNode> |
DomNode.getChildNodes() |
DomNodeList<HtmlElement> |
DomElement.getElementsByTagName(String tagName) |
DomNodeList<HtmlElement> |
HtmlPage.getElementsByTagName(String tagName) |
DomNodeList<HtmlElement> |
DomElement.getElementsByTagNameNS(String namespace,
String localName)
Not yet implemented.
|
DomNodeList<HtmlElement> |
HtmlPage.getElementsByTagNameNS(String namespaceURI,
String localName)
Not yet implemented.
|
protected DomNodeList<DomNode> |
DomNode.querySelectorAll(String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector
within the supplied selector strings.
|
DomNodeList<DomNode> |
HtmlElement.querySelectorAll(String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector
within the supplied selector strings.
|
DomNodeList<DomNode> |
HtmlPage.querySelectorAll(String selectors)
Retrieves all element nodes from descendants of the starting element node that match any selector
within the supplied selector strings.
|
Copyright © 2002-2012 Gargoyle Software Inc.. All Rights Reserved.