All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fluentlenium.core.events.FindByListener Maven / Gradle / Ivy

package org.fluentlenium.core.events;

import org.fluentlenium.core.domain.FluentWebElement;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;

/**
 * Listener interface for FindBy events
 */
public interface FindByListener {

    /**
     * Invoked when an element has been found.
     *
     * @param by      locator that found the element
     * @param element element found
     * @param driver  selenium webdriver
     */
    void on(By by, FluentWebElement element, WebDriver driver); // NOPMD ShortMethodName
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy