码迷,mamicode.com
首页 > 其他好文 > 详细

设置等待操作

时间:2016-06-18 12:52:18      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

package Page;

import org.openqa.selenium.*;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;

public class element {
    private static WebElement element = null;
// 等待判断
    public static boolean isExistWebElement(WebDriver driver, String xpath) {

        // WebDriverWait wait = new WebDriverWait(driver, 2);
        try {
            WebDriverWait wait = new WebDriverWait(driver, 2);
            wait.until(ExpectedConditions.presenceOfElementLocated(By
                    .xpath(xpath)));
            return true;
        } catch (Exception e) {
            return false;
        }
    }
}

 

设置等待操作

标签:

原文地址:http://www.cnblogs.com/cmm2016/p/5595890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!