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

org.fluentlenium.core.hook.FluentHook Maven / Gradle / Ivy

package org.fluentlenium.core.hook;

import org.openqa.selenium.WebElement;
import org.openqa.selenium.WrapsElement;
import org.openqa.selenium.interactions.Locatable;
import org.openqa.selenium.support.pagefactory.ElementLocator;

/**
 * Hook interface.
 *
 * @param  type of hook options
 */
public interface FluentHook extends WebElement, ElementLocator, WrapsElement, Locatable {
    /**
     * Get the options of the hook.
     *
     * @return hook options
     */
    T getOptions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy