示例代码:
from selenium.webdriver.support.wait import webdriverwait as WD
def find_element(self, by, locator): """ find alone element :param by: eg: id, name, xpath, css..... :param locator: id, name, xpath for str :return: element object """ try: print('[Info:Starting find the element "{}" by "{}"!]'.format(locator, by)) element = WD(self.driver, self.outTime).until(lambda x: x.find_element(by, locator)) # 其实指driver except TimeoutException as t: print('error: found "{}" timeout!'.format(locator), t) else: return element
对于 element = WD(self.driver, self.outTime).until(lambda x: x.find_element(by, locator))如何理解?
它是说程序每隔xx秒看一眼,如果条件成立了,则执行下一步;否则继续等待,直到超过设置的最长时间,然后抛出TimeoutException异常
def until(self, method, message=''): """Calls the method provided with the driver as an argument until the \ return value is not False.""" screen = None stacktrace = None end_time = time.time() + self._timeout while True: try: value = method(self._driver) if value: return value except self._ignored_exceptions as exc: screen = getattr(exc, 'screen', None) stacktrace = getattr(exc, 'stacktrace', None) time.sleep(self._poll) if time.time() > end_time: break raise TimeoutException(message, screen, stacktrace)
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。