Class HtmlElementUtil

java.lang.Object
org.htmlunit.html.HtmlElementUtil

public class HtmlElementUtil extends Object
HtmlElement helper methods.
Author:
tom.fennelly@gmail.com
  • Constructor Details

    • HtmlElementUtil

      public HtmlElementUtil()
  • Method Details

    • click

      public static org.htmlunit.Page click(org.htmlunit.html.HtmlElement element) throws IOException
      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

      public static boolean hasClassName(org.htmlunit.html.HtmlElement element, String className)
      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:
      true if the element defines the specified class, otherwise false.