Package io.fluentlenium.core.proxy
Interface ProxyElementListener
- All Known Implementing Classes:
ComponentsManager
public interface ProxyElementListener
Proxy element listener.
-
Method Summary
Modifier and TypeMethodDescriptionvoidproxyElementFound(Object proxy, org.openqa.selenium.support.pagefactory.ElementLocator locator, List<org.openqa.selenium.WebElement> elements) Invoked when proxy element search is over and elements were found.voidproxyElementSearch(Object proxy, org.openqa.selenium.support.pagefactory.ElementLocator locator) Invoked when proxy element search is starting.
-
Method Details
-
proxyElementSearch
void proxyElementSearch(Object proxy, org.openqa.selenium.support.pagefactory.ElementLocator locator) Invoked when proxy element search is starting.- Parameters:
proxy- proxylocator- element locator
-
proxyElementFound
void proxyElementFound(Object proxy, org.openqa.selenium.support.pagefactory.ElementLocator locator, List<org.openqa.selenium.WebElement> elements) Invoked when proxy element search is over and elements were found.- Parameters:
proxy- proxylocator- element locatorelements- found elements
-