Class Element
- java.lang.Object
-
- org.opennms.smoketest.ui.framework.Element
-
- Direct Known Subclasses:
Page
,SearchResult
,SearchResultItem
,UiElement
public abstract class Element extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected <X> X
execute(java.util.function.Supplier<X> supplier)
org.openqa.selenium.WebElement
findElementByCss(String css)
org.openqa.selenium.WebElement
findElementById(String id)
org.openqa.selenium.WebElement
findElementByLink(String link)
org.openqa.selenium.WebElement
findElementByName(String name)
org.openqa.selenium.WebElement
findElementByXpath(String xpath)
org.openqa.selenium.WebDriver
getDriver()
-
-
-
Constructor Detail
-
Element
public Element(org.openqa.selenium.WebDriver driver, int implicitWait, TimeUnit implictWaitUnit)
-
Element
public Element(org.openqa.selenium.WebDriver driver)
-
-
Method Detail
-
findElementById
public org.openqa.selenium.WebElement findElementById(String id)
-
findElementByLink
public org.openqa.selenium.WebElement findElementByLink(String link)
-
findElementByName
public org.openqa.selenium.WebElement findElementByName(String name)
-
findElementByCss
public org.openqa.selenium.WebElement findElementByCss(String css)
-
findElementByXpath
public org.openqa.selenium.WebElement findElementByXpath(String xpath)
-
getDriver
public org.openqa.selenium.WebDriver getDriver()
-
execute
protected <X> X execute(java.util.function.Supplier<X> supplier)
-
-