标签:mes exception 异常 not poll 间隔 浏览器 默认 bdr
1.WebDriverWait类,由webdriver提供的等待方法,格式:
WebDriverWait(dirver,timeout,poll_frequency=0.5,ignored_exceptions=None)
driver:浏览器驱动
timeout:最长超时时间,默认单位秒
poll_frequency:检查间隔时间(步长),默认0.5s
ignored_exceptions:超时后的异常情况,默认抛NoSuchElementException异常
WebDriverWait()一般和until()或until_not()方法配合使用
until(method,message=‘‘):调用该方法提供的驱动程序作为一个参数,只到返回值为true
until_not(method,message=‘‘):调用该方法提供的驱动程序作为一个参数,只到返回值为false
标签:mes exception 异常 not poll 间隔 浏览器 默认 bdr
原文地址:http://www.cnblogs.com/being-a-tester/p/7728077.html