auto_waitAndCheckElementPresent

public boolean auto_waitAndCheckElementPresent(By locator) {
    try {
        this.auto_getWait().until(ExpectedConditions.presenceOfElementLocated(locator));
        return true;
    } catch (TimeoutException var3) {
        return false;
    }
}
What are your feelings
Scroll al inicio