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

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

package jp.vmi.selenium.selenese.locator;

import java.util.List;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

class IdentifierHandler extends NameHandler {

    @Override
    public String locatorType() {
        return "identifier";
    }

    @Override
    public List handle(WebDriver driver, String arg) {
        List result = driver.findElements(By.id(arg));
        if (!result.isEmpty())
            return result;
        return super.handle(driver, arg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy