Interface SeleniumFindBehavior
-
- All Known Implementing Classes:
SeleniumClickAction,SeleniumGetAttributeAction,SeleniumGetTextAction,SeleniumHoverThenClickAction,SeleniumScrollToAction,SeleniumSendKeysAction,SeleniumSwitchToAction,SeleniumWaitAction
public interface SeleniumFindBehavior
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSeleniumFindBehavior.WebElementFindBy
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Optional<org.openqa.selenium.By>by(org.openqa.selenium.WebDriver webDriver, String selector, String by)default Optional<org.openqa.selenium.WebElement>findElement(Logger logger, org.openqa.selenium.WebDriver webDriver, String selector, String by, Integer wait)default Function<org.openqa.selenium.WebDriver,org.openqa.selenium.WebElement>findExpectation(org.openqa.selenium.By by)
-
-
-
Method Detail
-
findElement
default Optional<org.openqa.selenium.WebElement> findElement(Logger logger, org.openqa.selenium.WebDriver webDriver, String selector, String by, Integer wait)
-
by
default Optional<org.openqa.selenium.By> by(org.openqa.selenium.WebDriver webDriver, String selector, String by)
-
findExpectation
default Function<org.openqa.selenium.WebDriver,org.openqa.selenium.WebElement> findExpectation(org.openqa.selenium.By by)
-
-