mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
4.1.0.0b23修复没有timeout属性问题
This commit is contained in:
parent
adfe62ed25
commit
6a96b227af
@ -12,4 +12,4 @@ from ._pages.chromium_page import ChromiumPage
|
|||||||
from ._pages.session_page import SessionPage
|
from ._pages.session_page import SessionPage
|
||||||
from ._pages.web_page import WebPage
|
from ._pages.web_page import WebPage
|
||||||
|
|
||||||
__version__ = '4.1.0.0b22'
|
__version__ = '4.1.0.0b23'
|
||||||
|
@ -89,7 +89,7 @@ class BaseElement(BaseParser):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def timeout(self):
|
def timeout(self):
|
||||||
return self.owner.timeout
|
return self.owner.timeout if self.owner else 10
|
||||||
|
|
||||||
# ----------------以下属性或方法由后代实现----------------
|
# ----------------以下属性或方法由后代实现----------------
|
||||||
@property
|
@property
|
||||||
|
@ -25,6 +25,7 @@ from .._pages.web_page import WebPage
|
|||||||
|
|
||||||
class BaseParser(object):
|
class BaseParser(object):
|
||||||
_type: str
|
_type: str
|
||||||
|
timeout: float
|
||||||
|
|
||||||
def __call__(self, locator: Union[Tuple[str, str], str], index: int = 1): ...
|
def __call__(self, locator: Union[Tuple[str, str], str], index: int = 1): ...
|
||||||
|
|
||||||
|
@ -141,7 +141,7 @@ class ChromiumElement(DrissionElement):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def sr(self):
|
def sr(self):
|
||||||
end_time = perf_counter() + self.owner.timeout
|
end_time = perf_counter() + self.timeout
|
||||||
while perf_counter() < end_time:
|
while perf_counter() < end_time:
|
||||||
info = self.owner._run_cdp('DOM.describeNode', backendNodeId=self._backend_id)['node']
|
info = self.owner._run_cdp('DOM.describeNode', backendNodeId=self._backend_id)['node']
|
||||||
if info.get('shadowRoots', None):
|
if info.get('shadowRoots', None):
|
||||||
@ -238,7 +238,8 @@ class ChromiumElement(DrissionElement):
|
|||||||
return ChromiumElementsList(self.owner, super().afters(locator, timeout, ele_only=ele_only))
|
return ChromiumElementsList(self.owner, super().afters(locator, timeout, ele_only=ele_only))
|
||||||
|
|
||||||
def over(self, timeout=None):
|
def over(self, timeout=None):
|
||||||
timeout = timeout if timeout is None else self.owner.timeout
|
if timeout is None:
|
||||||
|
timeout = self.timeout
|
||||||
bid = self.wait.covered(timeout=timeout)
|
bid = self.wait.covered(timeout=timeout)
|
||||||
if bid:
|
if bid:
|
||||||
return ChromiumElement(owner=self.owner, backend_id=bid)
|
return ChromiumElement(owner=self.owner, backend_id=bid)
|
||||||
@ -261,7 +262,8 @@ class ChromiumElement(DrissionElement):
|
|||||||
x = int(nx)
|
x = int(nx)
|
||||||
y = int(ny)
|
y = int(ny)
|
||||||
loc_data = locator_to_tuple(locator) if locator else None
|
loc_data = locator_to_tuple(locator) if locator else None
|
||||||
timeout = timeout if timeout is not None else self.owner.timeout
|
if timeout is None:
|
||||||
|
timeout = self.timeout
|
||||||
end_time = perf_counter() + timeout
|
end_time = perf_counter() + timeout
|
||||||
try:
|
try:
|
||||||
ele = ChromiumElement(owner=self.owner,
|
ele = ChromiumElement(owner=self.owner,
|
||||||
@ -437,7 +439,8 @@ class ChromiumElement(DrissionElement):
|
|||||||
return self._run_js(f'return window.getComputedStyle(this{pseudo_ele}).getPropertyValue("{style}");')
|
return self._run_js(f'return window.getComputedStyle(this{pseudo_ele}).getPropertyValue("{style}");')
|
||||||
|
|
||||||
def src(self, timeout=None, base64_to_bytes=True):
|
def src(self, timeout=None, base64_to_bytes=True):
|
||||||
timeout = self.owner.timeout if timeout is None else timeout
|
if timeout is None:
|
||||||
|
timeout = self.timeout
|
||||||
if self.tag == 'img': # 等待图片加载完成
|
if self.tag == 'img': # 等待图片加载完成
|
||||||
js = ('return this.complete && typeof this.naturalWidth != "undefined" '
|
js = ('return this.complete && typeof this.naturalWidth != "undefined" '
|
||||||
'&& this.naturalWidth > 0 && typeof this.naturalHeight != "undefined" '
|
'&& this.naturalWidth > 0 && typeof this.naturalHeight != "undefined" '
|
||||||
@ -524,7 +527,7 @@ class ChromiumElement(DrissionElement):
|
|||||||
if self.tag == 'img': # 等待图片加载完成
|
if self.tag == 'img': # 等待图片加载完成
|
||||||
js = ('return this.complete && typeof this.naturalWidth != "undefined" && this.naturalWidth > 0 '
|
js = ('return this.complete && typeof this.naturalWidth != "undefined" && this.naturalWidth > 0 '
|
||||||
'&& typeof this.naturalHeight != "undefined" && this.naturalHeight > 0')
|
'&& typeof this.naturalHeight != "undefined" && this.naturalHeight > 0')
|
||||||
end_time = perf_counter() + self.owner.timeout
|
end_time = perf_counter() + self.timeout
|
||||||
while not self._run_js(js) and perf_counter() < end_time:
|
while not self._run_js(js) and perf_counter() < end_time:
|
||||||
sleep(.1)
|
sleep(.1)
|
||||||
if scroll_to_center:
|
if scroll_to_center:
|
||||||
@ -937,7 +940,8 @@ def find_in_chromium_ele(ele, locator, index=1, timeout=None, relative=True):
|
|||||||
loc_str = f'{ele.css_path}{loc[1]}'
|
loc_str = f'{ele.css_path}{loc[1]}'
|
||||||
loc = loc[0], loc_str
|
loc = loc[0], loc_str
|
||||||
|
|
||||||
timeout = timeout if timeout is not None else ele.owner.timeout
|
if timeout is None:
|
||||||
|
timeout = ele.timeout
|
||||||
|
|
||||||
# ---------------执行查找-----------------
|
# ---------------执行查找-----------------
|
||||||
if loc[0] == 'xpath':
|
if loc[0] == 'xpath':
|
||||||
|
@ -425,7 +425,8 @@ class ChromiumBase(BasePage):
|
|||||||
return self._ele(locator, timeout=timeout, index=None)
|
return self._ele(locator, timeout=timeout, index=None)
|
||||||
|
|
||||||
def s_ele(self, locator=None, index=1, timeout=None):
|
def s_ele(self, locator=None, index=1, timeout=None):
|
||||||
timeout = self.timeout if timeout is None else timeout
|
if timeout is None:
|
||||||
|
timeout = self.timeout
|
||||||
return (NoneElement(self, method='s_ele()', args={'locator': locator, 'index': index, 'timeout': timeout})
|
return (NoneElement(self, method='s_ele()', args={'locator': locator, 'index': index, 'timeout': timeout})
|
||||||
if locator and not self.wait.eles_loaded(locator, timeout=timeout)
|
if locator and not self.wait.eles_loaded(locator, timeout=timeout)
|
||||||
else make_session_ele(self, locator, index=index, method='s_ele()'))
|
else make_session_ele(self, locator, index=index, method='s_ele()'))
|
||||||
@ -682,8 +683,8 @@ class ChromiumBase(BasePage):
|
|||||||
self._alert.handle_next = accept
|
self._alert.handle_next = accept
|
||||||
self._alert.next_text = send
|
self._alert.next_text = send
|
||||||
return
|
return
|
||||||
|
if timeout is None:
|
||||||
timeout = self.timeout if timeout is None else timeout
|
timeout = self.timeout
|
||||||
timeout = .1 if timeout <= 0 else timeout
|
timeout = .1 if timeout <= 0 else timeout
|
||||||
end_time = perf_counter() + timeout
|
end_time = perf_counter() + timeout
|
||||||
while not self._alert.activated and perf_counter() < end_time:
|
while not self._alert.activated and perf_counter() < end_time:
|
||||||
@ -728,7 +729,8 @@ class ChromiumBase(BasePage):
|
|||||||
self._has_alert = False
|
self._has_alert = False
|
||||||
|
|
||||||
def _wait_loaded(self, timeout=None):
|
def _wait_loaded(self, timeout=None):
|
||||||
timeout = timeout if timeout is not None else self.timeouts.page_load
|
if timeout is None:
|
||||||
|
timeout = self.timeouts.page_load
|
||||||
end_time = perf_counter() + timeout
|
end_time = perf_counter() + timeout
|
||||||
while perf_counter() < end_time:
|
while perf_counter() < end_time:
|
||||||
if self._ready_state == 'complete':
|
if self._ready_state == 'complete':
|
||||||
|
@ -32,7 +32,8 @@ class Clicker(object):
|
|||||||
|
|
||||||
if not by_js: # 模拟点击
|
if not by_js: # 模拟点击
|
||||||
can_click = False
|
can_click = False
|
||||||
timeout = self._ele.owner.timeout if timeout is None else timeout
|
if timeout is None:
|
||||||
|
timeout = self._ele.timeout
|
||||||
rect = None
|
rect = None
|
||||||
if timeout == 0:
|
if timeout == 0:
|
||||||
try:
|
try:
|
||||||
|
@ -18,7 +18,8 @@ class SelectElement(object):
|
|||||||
|
|
||||||
def __call__(self, text_or_index, timeout=None):
|
def __call__(self, text_or_index, timeout=None):
|
||||||
para_type = 'index' if isinstance(text_or_index, int) else 'text'
|
para_type = 'index' if isinstance(text_or_index, int) else 'text'
|
||||||
timeout = timeout if timeout is not None else self._ele.owner.timeout
|
if timeout is None:
|
||||||
|
timeout = self._ele.timeout
|
||||||
return self._select(text_or_index, para_type, timeout=timeout)
|
return self._select(text_or_index, para_type, timeout=timeout)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@ -106,7 +107,8 @@ class SelectElement(object):
|
|||||||
raise TypeError('单选列表只能传入str格式。')
|
raise TypeError('单选列表只能传入str格式。')
|
||||||
|
|
||||||
mode = 'false' if cancel else 'true'
|
mode = 'false' if cancel else 'true'
|
||||||
timeout = timeout if timeout is not None else self._ele.owner.timeout
|
if timeout is None:
|
||||||
|
timeout = self._ele.timeout
|
||||||
condition = set(condition) if isinstance(condition, (list, tuple)) else {condition}
|
condition = set(condition) if isinstance(condition, (list, tuple)) else {condition}
|
||||||
|
|
||||||
if para_type in ('text', 'value'):
|
if para_type in ('text', 'value'):
|
||||||
|
@ -9,7 +9,7 @@ from time import sleep, perf_counter
|
|||||||
|
|
||||||
from .._functions.locator import get_loc
|
from .._functions.locator import get_loc
|
||||||
from .._functions.settings import Settings
|
from .._functions.settings import Settings
|
||||||
from ..errors import WaitTimeoutError, NoRectError, ContextLostError
|
from ..errors import WaitTimeoutError, NoRectError
|
||||||
|
|
||||||
|
|
||||||
class OriginWaiter(object):
|
class OriginWaiter(object):
|
||||||
@ -31,7 +31,8 @@ class BrowserWaiter(OriginWaiter):
|
|||||||
curr_tab = self._owner.tab_ids[0]
|
curr_tab = self._owner.tab_ids[0]
|
||||||
elif hasattr(curr_tab, '_type'):
|
elif hasattr(curr_tab, '_type'):
|
||||||
curr_tab = curr_tab.tab_id
|
curr_tab = curr_tab.tab_id
|
||||||
timeout = timeout if timeout is not None else self._owner.timeout
|
if timeout is None:
|
||||||
|
timeout = self._owner.timeout
|
||||||
end_time = perf_counter() + timeout
|
end_time = perf_counter() + timeout
|
||||||
while perf_counter() < end_time:
|
while perf_counter() < end_time:
|
||||||
latest_tid = self._owner.tab_ids[0]
|
latest_tid = self._owner.tab_ids[0]
|
||||||
@ -151,7 +152,8 @@ class BaseWaiter(OriginWaiter):
|
|||||||
else [get_loc(x)[1] for x in locators])
|
else [get_loc(x)[1] for x in locators])
|
||||||
method = any if any_one else all
|
method = any if any_one else all
|
||||||
|
|
||||||
timeout = self._owner.timeout if timeout is None else timeout
|
if timeout is None:
|
||||||
|
timeout = self._owner.timeout
|
||||||
end_time = perf_counter() + timeout
|
end_time = perf_counter() + timeout
|
||||||
while perf_counter() < end_time:
|
while perf_counter() < end_time:
|
||||||
if method([_find(l, self._owner.driver) for l in locators]):
|
if method([_find(l, self._owner.driver) for l in locators]):
|
||||||
@ -302,7 +304,7 @@ class ElementWaiter(OriginWaiter):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def _timeout(self):
|
def _timeout(self):
|
||||||
return self._ele.owner.timeout
|
return self._ele.timeout
|
||||||
|
|
||||||
def deleted(self, timeout=None, raise_err=None):
|
def deleted(self, timeout=None, raise_err=None):
|
||||||
return self._wait_state('is_alive', False, timeout, raise_err, err_text='等待元素被删除失败。')
|
return self._wait_state('is_alive', False, timeout, raise_err, err_text='等待元素被删除失败。')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user