Package org.htmlunit.html
Class HtmlElementUtil
java.lang.Object
org.htmlunit.html.HtmlElementUtil
HtmlElement helper methods.- Author:
 - tom.fennelly@gmail.com
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic org.htmlunit.Pageclick(org.htmlunit.html.HtmlElement element) Click on the supplied element.static booleanhasClassName(org.htmlunit.html.HtmlElement element, String className) Does the supplied element define the specified HTML "class" name. 
- 
Constructor Details
- 
HtmlElementUtil
public HtmlElementUtil() 
 - 
 - 
Method Details
- 
click
Click on the supplied element.Waits for all executing JavaScript tasks to complete before returning.
- Parameters:
 element- The element to click.- Returns:
 - The page resulting from the click
 - Throws:
 IOException- if an IO error occurs
 - 
hasClassName
Does the supplied element define the specified HTML "class" name.- Parameters:
 element- The element to check.className- The HTML "class" name to check for.- Returns:
 trueif the element defines the specified class, otherwisefalse.
 
 -