CS 1705 Library

Uses of Interface
cs1705.web.HtmlElement

Packages that use HtmlElement
cs1705.web   
 

Uses of HtmlElement in cs1705.web
 

Subinterfaces of HtmlElement in cs1705.web
 interface HtmlHeadingElement
          This interface represents a specialized HtmlElement that represents an HTML heading tag--e.g., H1, H2, H3, H4, H5, or H6.
 

Methods in cs1705.web that return HtmlElement
 HtmlElement WebBot.getCurrentElement()
          Get the HTML element of interest that the robot is currently standing on.
 HtmlElement TurboWebBot.getElementById(String id)
          Get the first HTML element with the specified id on this web page, using the HTML id="..." attribute on the element.
 HtmlElement TurboWebBot.getFirstMatchingElement(String tagType)
          Get the first HTML element of the specified type on this web page.
 HtmlElement TurboWebBot.getFirstMatchingElement(String parentTag, String... childTag)
          Get the first HTML element of the specified type on this web page, based on the context where the element appears.
 

Methods in cs1705.web that return types with arguments of type HtmlElement
 List<HtmlElement> TurboWebBot.getAllElementsMatchingXpath(String xpathExpression)
          Find nodes within the current document using an XPATH expression.
 List<HtmlElement> TurboWebBot.getAllMatchingElements(String tagType)
          Get all HTML elements of the specified type on this web page.
 List<HtmlElement> TurboWebBot.getAllMatchingElements(String parentTag, String... childTag)
          Get all HTML elements of the specified type on this web page, based on the context where the elements appear.
 List<HtmlElement> TurboWebBot.getElementsByCssClass(String cssClass)
          Get all the HTML elements with the specified CSS class on this web page, using the HTML class="..." attribute on the elements.
 


Last updated: Wed, Apr 1, 2009 • 12:29 AM EDT

Copyright © 2009 Virginia Tech.