auto_isElementVisible

public boolean auto_isElementVisible(String elementPath, String ... elementValue) {
    By locator =  LocatorBuilder.getBy(elementPath, elementValue);
    boolean var;
    try {
        var=this.auto_isElementVisible(this.auto_getWebElement(locator));
    }catch (Exception e) {
        LOGGER.info("The element is not visible, return FALSE");
        var=false;
    }
    return var;
}
What are your feelings
Scroll al inicio