首页 > 其他 > 详细

Selenium的显示等待

时间:2014-05-16 07:40:33      阅读:370      评论:0      收藏:0      [点我收藏+]
1
2
3
4
5
6
7
8
9
Function<WebDriver, Boolean> waitFn = new Function<WebDriver, Boolean>() {
@Override
public Boolean apply(WebDriver driver) {
    Point newPos = page.getWDGAttrDetail().getLocation();
    return newPos.getY() != prePos.getY();
    }
};
         
SeleniumUtil.createWait(page.getDriver()).until(waitFn);

 

Selenium的显示等待,布布扣,bubuko.com

Selenium的显示等待

原文:http://www.cnblogs.com/MasterMonkInTemple/p/3725992.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!