Package org.openqa.selenium.lift.find
Class HtmlTagFinder
- java.lang.Object
-
- org.openqa.selenium.lift.find.BaseFinder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>
-
- org.openqa.selenium.lift.find.HtmlTagFinder
-
- All Implemented Interfaces:
org.hamcrest.SelfDescribing,Finder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>
- Direct Known Subclasses:
DivFinder,ImageFinder,InputFinder,LinkFinder,PageTitleFinder,TableCellFinder,TableFinder
public abstract class HtmlTagFinder extends BaseFinder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>
BaseFinderfor all types of HTML tags. Subclasses should be created for each specific tag, specifying the tag name (e.g. "a" in the case or an anchor tag), and a description.
-
-
Field Summary
-
Fields inherited from class org.openqa.selenium.lift.find.BaseFinder
matchers
-
-
Constructor Summary
Constructors Constructor Description HtmlTagFinder()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voiddescribeTargetTo(org.hamcrest.Description description)protected java.util.Collection<org.openqa.selenium.WebElement>extractFrom(org.openqa.selenium.WebDriver context)protected abstract java.lang.StringtagDescription()protected abstract java.lang.StringtagName()HtmlTagFinderwith(org.hamcrest.Matcher<org.openqa.selenium.WebElement> matcher)-
Methods inherited from class org.openqa.selenium.lift.find.BaseFinder
allMatching, describeTo, findFrom
-
-
-
-
Method Detail
-
extractFrom
protected java.util.Collection<org.openqa.selenium.WebElement> extractFrom(org.openqa.selenium.WebDriver context)
- Specified by:
extractFromin classBaseFinder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>
-
describeTargetTo
protected void describeTargetTo(org.hamcrest.Description description)
- Specified by:
describeTargetToin classBaseFinder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>
-
with
public HtmlTagFinder with(org.hamcrest.Matcher<org.openqa.selenium.WebElement> matcher)
- Specified by:
within interfaceFinder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>- Overrides:
within classBaseFinder<org.openqa.selenium.WebElement,org.openqa.selenium.WebDriver>
-
tagName
protected abstract java.lang.String tagName()
-
tagDescription
protected abstract java.lang.String tagDescription()
-
-