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

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

package org.fluentlenium.core.events;

import org.openqa.selenium.WebDriver;

/**
 * Listener interface for NavigateTo events
 */
public interface NavigateToListener {

    /**
     * Invoked when a navigation event occurs.
     *
     * @param url    url beeing navigated to
     * @param driver selenium webdriver
     */
    void on(String url, WebDriver driver); // NOPMD ShortMethodName
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy