每隔指定的时间查找一次这个元素,找到后马上执行下一步,未找到时,持续寻找到最大时间后,再执行下一步。
1 WebDriverWait(driver, timeout, poll_frequency=0.5, ignored_exceptions=None) 2 driver:webdriver的驱动程序(ie,firefox,chrome,或远程) 3 timeout:最长超时时间,默认单位s 4 poll_frequency=0.5:休眠时间的间隔时间,默认为0.5秒 5 ignored_exceptions=none:超时后的异常信息,默认情况下抛NoSuchElementException 异常