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

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

package org.fluentlenium.core.events;

import org.openqa.selenium.WebDriver;

/**
 * Listener interface for Script events
 */
public interface ScriptListener {

    /**
     * Invoked when a script has been executed.
     *
     * @param script script sources
     * @param driver selenium webdriver
     */
    void on(String script, WebDriver driver); // NOPMD ShortMethodName
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy