mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
552 lines
24 KiB
Python
552 lines
24 KiB
Python
# -*- coding:utf-8 -*-
|
||
"""
|
||
@Author : g1879
|
||
@Contact : g1879@qq.com
|
||
@Copyright: (c) 2024 by g1879, Inc. All Rights Reserved.
|
||
@License : BSD 3-Clause.
|
||
"""
|
||
from time import sleep, perf_counter
|
||
|
||
from .._functions.locator import get_loc
|
||
from .._functions.settings import Settings
|
||
from ..errors import WaitTimeoutError, NoRectError
|
||
|
||
|
||
class OriginWaiter(object):
|
||
def __call__(self, second, scope=None):
|
||
"""等待若干秒,如传入两个参数,等待时间为这两个数间的一个随机数
|
||
:param second: 秒数
|
||
:param scope: 随机数范围
|
||
:return: None
|
||
"""
|
||
if scope is None:
|
||
sleep(second)
|
||
else:
|
||
from random import uniform
|
||
sleep(uniform(second, scope))
|
||
|
||
|
||
class BaseWaiter(OriginWaiter):
|
||
def __init__(self, page_or_ele):
|
||
"""
|
||
:param page_or_ele: 页面对象或元素对象
|
||
"""
|
||
self._driver = page_or_ele
|
||
|
||
def ele_deleted(self, loc_or_ele, timeout=None, raise_err=None):
|
||
"""等待元素从DOM中删除
|
||
:param loc_or_ele: 要等待的元素,可以是已有元素、定位符
|
||
:param timeout: 超时时间,默认读取页面超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
ele = self._driver._ele(loc_or_ele, raise_err=False, timeout=0)
|
||
return ele.wait.deleted(timeout, raise_err=raise_err) if ele else True
|
||
|
||
def ele_displayed(self, loc_or_ele, timeout=None, raise_err=None):
|
||
"""等待元素变成显示状态
|
||
:param loc_or_ele: 要等待的元素,可以是已有元素、定位符
|
||
:param timeout: 超时时间,默认读取页面超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
if timeout is None:
|
||
timeout = self._driver.timeout
|
||
end_time = perf_counter() + timeout
|
||
ele = self._driver._ele(loc_or_ele, raise_err=False, timeout=timeout)
|
||
timeout = end_time - perf_counter()
|
||
if timeout <= 0:
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待元素显示失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
return ele.wait.displayed(timeout, raise_err=raise_err)
|
||
|
||
def ele_hidden(self, loc_or_ele, timeout=None, raise_err=None):
|
||
"""等待元素变成隐藏状态
|
||
:param loc_or_ele: 要等待的元素,可以是已有元素、定位符
|
||
:param timeout: 超时时间,默认读取页面超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
if timeout is None:
|
||
timeout = self._driver.timeout
|
||
end_time = perf_counter() + timeout
|
||
ele = self._driver._ele(loc_or_ele, raise_err=False, timeout=timeout)
|
||
timeout = end_time - perf_counter()
|
||
if timeout <= 0:
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待元素显示失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
return ele.wait.hidden(timeout, raise_err=raise_err)
|
||
|
||
def eles_loaded(self, locators, timeout=None, any_one=False, raise_err=None):
|
||
"""等待元素加载到DOM,可等待全部或任意一个
|
||
:param locators: 要等待的元素,输入定位符,用list输入多个
|
||
:param timeout: 超时时间,默认读取页面超时时间
|
||
:param any_one: 是否等待到一个就返回
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 成功返回True,失败返回False
|
||
"""
|
||
|
||
def _find(loc, driver):
|
||
r = driver.run('DOM.performSearch', query=loc, includeUserAgentShadowDOM=True)
|
||
if not r or 'error' in r:
|
||
return False
|
||
elif r['resultCount'] == 0:
|
||
driver.run('DOM.discardSearchResults', searchId=r['searchId'])
|
||
return False
|
||
searchId = r['searchId']
|
||
ids = driver.run('DOM.getSearchResults', searchId=searchId, fromIndex=0,
|
||
toIndex=r['resultCount'])
|
||
if 'error' in ids:
|
||
return False
|
||
|
||
ids = ids['nodeIds']
|
||
res = False
|
||
for i in ids:
|
||
r = driver.run('DOM.describeNode', nodeId=i)
|
||
if 'error' in r or r['node']['nodeName'] in ('#text', '#comment'):
|
||
continue
|
||
else:
|
||
res = True
|
||
break
|
||
driver.run('DOM.discardSearchResults', searchId=searchId)
|
||
return res
|
||
|
||
by = ('id', 'xpath', 'link text', 'partial link text', 'name', 'tag name', 'class name', 'css selector')
|
||
locators = ((get_loc(locators)[1],) if (isinstance(locators, str) or isinstance(locators, tuple)
|
||
and locators[0] in by and len(locators) == 2)
|
||
else [get_loc(l)[1] for l in locators])
|
||
method = any if any_one else all
|
||
|
||
timeout = self._driver.timeout if timeout is None else timeout
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
if method([_find(l, self._driver.driver) for l in locators]):
|
||
return True
|
||
sleep(.01)
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待元素{locators}加载失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
def load_start(self, timeout=None, raise_err=None):
|
||
"""等待页面开始加载
|
||
:param timeout: 超时时间,为None时使用页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._loading(timeout=timeout, gap=.002, raise_err=raise_err)
|
||
|
||
def doc_loaded(self, timeout=None, raise_err=None):
|
||
"""等待页面加载完成
|
||
:param timeout: 超时时间,为None时使用页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._loading(timeout=timeout, start=False, raise_err=raise_err)
|
||
|
||
def upload_paths_inputted(self):
|
||
"""等待自动填写上传文件路径"""
|
||
end_time = perf_counter() + self._driver.timeout
|
||
while perf_counter() < end_time:
|
||
if not self._driver._upload_list:
|
||
return True
|
||
sleep(.01)
|
||
return False
|
||
|
||
def download_begin(self, timeout=None, cancel_it=False):
|
||
"""等待浏览器下载开始,可将其拦截
|
||
:param timeout: 超时时间,None使用页面对象超时时间
|
||
:param cancel_it: 是否取消该任务
|
||
:return: 成功返回任务对象,失败返回False
|
||
"""
|
||
if not self._driver.browser._dl_mgr._running:
|
||
raise RuntimeError('此功能需显式设置下载路径(使用set.download_path()方法、配置对象或ini文件均可)。')
|
||
self._driver.browser._dl_mgr.set_flag(self._driver.tab_id, False if cancel_it else True)
|
||
if timeout is None:
|
||
timeout = self._driver.timeout
|
||
|
||
r = False
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
v = self._driver.browser._dl_mgr.get_flag(self._driver.tab_id)
|
||
if not isinstance(v, bool):
|
||
r = v
|
||
break
|
||
sleep(.005)
|
||
|
||
self._driver.browser._dl_mgr.set_flag(self._driver.tab_id, None)
|
||
return r
|
||
|
||
def url_change(self, text, exclude=False, timeout=None, raise_err=None):
|
||
"""等待url变成包含或不包含指定文本
|
||
:param text: 用于识别的文本
|
||
:param exclude: 是否排除,为True时当url不包含text指定文本时返回True
|
||
:param timeout: 超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._change('url', text, exclude, timeout, raise_err)
|
||
|
||
def title_change(self, text, exclude=False, timeout=None, raise_err=None):
|
||
"""等待title变成包含或不包含指定文本
|
||
:param text: 用于识别的文本
|
||
:param exclude: 是否排除,为True时当title不包含text指定文本时返回True
|
||
:param timeout: 超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._change('title', text, exclude, timeout, raise_err)
|
||
|
||
def _change(self, arg, text, exclude=False, timeout=None, raise_err=None):
|
||
"""等待指定属性变成包含或不包含指定文本
|
||
:param arg: 要被匹配的属性
|
||
:param text: 用于识别的文本
|
||
:param exclude: 是否排除,为True时当属性不包含text指定文本时返回True
|
||
:param timeout: 超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
if timeout is None:
|
||
timeout = self._driver.timeout
|
||
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
if arg == 'url':
|
||
val = self._driver.url
|
||
elif arg == 'title':
|
||
val = self._driver.title
|
||
else:
|
||
raise ValueError
|
||
if (not exclude and text in val) or (exclude and text not in val):
|
||
return True
|
||
sleep(.05)
|
||
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待{arg}改变失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
def _loading(self, timeout=None, start=True, gap=.01, raise_err=None):
|
||
"""等待页面开始加载或加载完成
|
||
:param timeout: 超时时间,为None时使用页面timeout属性
|
||
:param start: 等待开始还是结束
|
||
:param gap: 间隔秒数
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
if timeout != 0:
|
||
if timeout is None or timeout is True:
|
||
timeout = self._driver.timeout
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
if self._driver._is_loading == start:
|
||
return True
|
||
sleep(gap)
|
||
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待页面加载失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
# -----------即将废弃-----------
|
||
|
||
def data_packets(self, count=1, timeout=None, fix_count: bool = True):
|
||
"""等待符合要求的数据包到达指定数量
|
||
:param count: 需要捕捉的数据包数量
|
||
:param timeout: 超时时间,为None无限等待
|
||
:param fix_count: 是否必须满足总数要求,发生超时,为True返回False,为False返回已捕捉到的数据包
|
||
:return: count为1时返回数据包对象,大于1时返回列表,超时且fix_count为True时返回False"""
|
||
return self._driver.listen.wait(count, timeout, fix_count)
|
||
|
||
def load_complete(self, timeout=None, raise_err=None):
|
||
"""等待页面加载完成
|
||
:param timeout: 超时时间,为None时使用页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._loading(timeout=timeout, start=False, raise_err=raise_err)
|
||
|
||
def ele_loaded(self, locator, timeout=None, raise_err=None):
|
||
"""等待元素加载到DOM
|
||
:param locator: 要等待的元素,输入定位符
|
||
:param timeout: 超时时间,默认读取页面超时时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 成功返回元素对象,失败返回False
|
||
"""
|
||
ele = self._driver._ele(locator, raise_err=False, timeout=timeout)
|
||
if ele:
|
||
return ele
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待元素加载失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
|
||
class TabWaiter(BaseWaiter):
|
||
|
||
def downloads_done(self, timeout=None, cancel_if_timeout=True):
|
||
"""等待所有浏览器下载任务结束
|
||
:param timeout: 超时时间,为None时无限等待
|
||
:param cancel_if_timeout: 超时时是否取消剩余任务
|
||
:return: 是否等待成功
|
||
"""
|
||
if not self._driver.browser._dl_mgr._running:
|
||
raise RuntimeError('此功能需显式设置下载路径(使用set.download_path()方法、配置对象或ini文件均可)。')
|
||
if not timeout:
|
||
while self._driver.browser._dl_mgr.get_tab_missions(self._driver.tab_id):
|
||
sleep(.5)
|
||
return True
|
||
|
||
else:
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
if not self._driver.browser._dl_mgr.get_tab_missions(self._driver.tab_id):
|
||
return True
|
||
sleep(.5)
|
||
|
||
if self._driver.browser._dl_mgr.get_tab_missions(self._driver.tab_id):
|
||
if cancel_if_timeout:
|
||
for m in self._driver.browser._dl_mgr.get_tab_missions(self._driver.tab_id):
|
||
m.cancel()
|
||
return False
|
||
else:
|
||
return True
|
||
|
||
def alert_closed(self):
|
||
"""等待弹出框关闭"""
|
||
while not self._driver.states.has_alert:
|
||
sleep(.2)
|
||
while self._driver.states.has_alert:
|
||
sleep(.2)
|
||
|
||
|
||
class PageWaiter(TabWaiter):
|
||
def __init__(self, page):
|
||
super().__init__(page)
|
||
|
||
def new_tab(self, timeout=None, raise_err=None):
|
||
"""等待新标签页出现
|
||
:param timeout: 等待超时时间,为None则使用页面对象timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 等到新标签页返回其id,否则返回False
|
||
"""
|
||
timeout = timeout if timeout is not None else self._driver.timeout
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
latest_tid = self._driver.tab_ids[0]
|
||
if self._driver.tab_id != latest_tid:
|
||
return latest_tid
|
||
sleep(.01)
|
||
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待新标签页失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
def all_downloads_done(self, timeout=None, cancel_if_timeout=True):
|
||
"""等待所有浏览器下载任务结束
|
||
:param timeout: 超时时间,为None时无限等待
|
||
:param cancel_if_timeout: 超时时是否取消剩余任务
|
||
:return: 是否等待成功
|
||
"""
|
||
if not self._driver.browser._dl_mgr._running:
|
||
raise RuntimeError('此功能需显式设置下载路径(使用set.download_path()方法、配置对象或ini文件均可)。')
|
||
if not timeout:
|
||
while self._driver.browser._dl_mgr._missions:
|
||
sleep(.5)
|
||
return True
|
||
|
||
else:
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
if not self._driver.browser._dl_mgr._missions:
|
||
return True
|
||
sleep(.5)
|
||
|
||
if self._driver.browser._dl_mgr._missions:
|
||
if cancel_if_timeout:
|
||
for m in list(self._driver.browser._dl_mgr._missions.values()):
|
||
m.cancel()
|
||
return False
|
||
else:
|
||
return True
|
||
|
||
|
||
class ElementWaiter(OriginWaiter):
|
||
"""等待元素在dom中某种状态,如删除、显示、隐藏"""
|
||
|
||
def __init__(self, owner, ele):
|
||
"""等待元素在dom中某种状态,如删除、显示、隐藏
|
||
:param owner: 元素所在页面
|
||
:param ele: 要等待的元素
|
||
"""
|
||
self._owner = owner
|
||
self._ele = ele
|
||
|
||
def deleted(self, timeout=None, raise_err=None):
|
||
"""等待元素从dom删除
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_alive', False, timeout, raise_err, err_text='等待元素被删除失败。')
|
||
|
||
def displayed(self, timeout=None, raise_err=None):
|
||
"""等待元素从dom显示
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_displayed', True, timeout, raise_err, err_text='等待元素显示失败。')
|
||
|
||
def hidden(self, timeout=None, raise_err=None):
|
||
"""等待元素从dom隐藏
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_displayed', False, timeout, raise_err, err_text='等待元素隐藏失败。')
|
||
|
||
def covered(self, timeout=None, raise_err=None):
|
||
"""等待当前元素被遮盖
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_covered', True, timeout, raise_err, err_text='等待元素被覆盖失败。')
|
||
|
||
def not_covered(self, timeout=None, raise_err=None):
|
||
"""等待当前元素不被遮盖
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_covered', False, timeout, raise_err, err_text='等待元素不被覆盖失败。')
|
||
|
||
def enabled(self, timeout=None, raise_err=None):
|
||
"""等待当前元素变成可用
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_enabled', True, timeout, raise_err, err_text='等待元素变成可用失败。')
|
||
|
||
def disabled(self, timeout=None, raise_err=None):
|
||
"""等待当前元素变成不可用
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('is_enabled', False, timeout, raise_err, err_text='等待元素变成不可用失败。')
|
||
|
||
def disabled_or_deleted(self, timeout=None, raise_err=None):
|
||
"""等待当前元素变成不可用或从DOM移除
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
if timeout is None:
|
||
timeout = self._owner.timeout
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
if not self._ele.states.is_enabled or not self._ele.states.is_alive:
|
||
return True
|
||
sleep(.05)
|
||
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待元素隐藏或被删除失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
def stop_moving(self, timeout=None, gap=.1, raise_err=None):
|
||
"""等待当前元素停止运动
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param gap: 检测间隔时间
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
if timeout is None:
|
||
timeout = self._owner.timeout
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
try:
|
||
size = self._ele.states.has_rect
|
||
location = self._ele.rect.location
|
||
break
|
||
except NoRectError:
|
||
pass
|
||
sleep(.005)
|
||
else:
|
||
raise NoRectError
|
||
|
||
while perf_counter() < end_time:
|
||
sleep(gap)
|
||
if self._ele.rect.size == size and self._ele.rect.location == location:
|
||
return True
|
||
size = self._ele.rect.size
|
||
location = self._ele.rect.location
|
||
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(f'等待元素停止运动失败(等待{timeout}秒)。')
|
||
else:
|
||
return False
|
||
|
||
def clickable(self, wait_moved=True, timeout=None, raise_err=None):
|
||
"""等待当前元素可被点击
|
||
:param wait_moved: 是否等待元素运动结束
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
t1 = perf_counter()
|
||
r = self._wait_state('is_clickable', True, timeout, raise_err, err_text='等待元素可点击失败(等{}秒)。')
|
||
r = self.stop_moving(timeout=perf_counter() - t1) if wait_moved and r else r
|
||
if raise_err and not r:
|
||
raise WaitTimeoutError(f'等待元素可点击失败(等{timeout}秒)。')
|
||
return r
|
||
|
||
def has_rect(self, timeout=None, raise_err=None):
|
||
"""等待当前元素有大小及位置属性
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:return: 是否等待成功
|
||
"""
|
||
return self._wait_state('has_rect', True, timeout, raise_err, err_text='等待元素拥有大小及位置失败(等{}秒)。')
|
||
|
||
def _wait_state(self, attr, mode=False, timeout=None, raise_err=None, err_text=None):
|
||
"""等待元素某个元素状态到达指定状态
|
||
:param attr: 状态名称
|
||
:param mode: 等待True还是False
|
||
:param timeout: 超时时间,为None使用元素所在页面timeout属性
|
||
:param raise_err: 等待失败时是否报错,为None时根据Settings设置
|
||
:param err_text: 抛出错误时显示的信息
|
||
:return: 是否等待成功
|
||
"""
|
||
err_text = err_text or '等待元素状态改变失败(等待{}秒)。'
|
||
if timeout is None:
|
||
timeout = self._owner.timeout
|
||
end_time = perf_counter() + timeout
|
||
while perf_counter() < end_time:
|
||
a = self._ele.states.__getattribute__(attr)
|
||
if (a and mode) or (not a and not mode):
|
||
return True
|
||
sleep(.05)
|
||
|
||
if raise_err is True or Settings.raise_when_wait_failed is True:
|
||
raise WaitTimeoutError(err_text.format(timeout))
|
||
else:
|
||
return False
|
||
|
||
|
||
class FrameWaiter(BaseWaiter, ElementWaiter):
|
||
def __init__(self, frame):
|
||
"""
|
||
:param frame: ChromiumFrame对象
|
||
"""
|
||
super().__init__(frame)
|
||
super(BaseWaiter, self).__init__(frame, frame.frame_ele)
|