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

jp.vmi.selenium.selenese.locator.OptionLocatorHandler Maven / Gradle / Ivy

package jp.vmi.selenium.selenese.locator;

import java.util.List;

import org.openqa.selenium.WebElement;

/**
 * Option locator handler.
 */
public interface OptionLocatorHandler {

    /**
     * Option locator type.
     *
     * @return option locator type.
     */
    String optionLocatorType();

    /**
     * Handle option locator.
     * @param element WebElement object.
     * @param arg option locator argument.
     * @return filterd element.
     */
    List handle(WebElement element, String arg);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy