优化等待逻辑

This commit is contained in:
g1879 2021-12-27 22:40:07 +08:00
parent f4c76a2c2c
commit fe2ca2d8c3
2 changed files with 8 additions and 9 deletions

View File

@ -362,8 +362,12 @@ class DriverElement(DrissionElement):
if not by_js:
timeout = timeout if timeout is not None else self.page.timeout
t1 = perf_counter()
while not do_it() and perf_counter() - t1 <= timeout:
pass
click = do_it()
while not click and perf_counter() - t1 <= timeout:
click = do_it()
if click:
return True
# 若点击失败用js方式点击
if by_js is not False:

View File

@ -144,15 +144,10 @@ class ShadowRootElement(BaseElement):
loc = loc[0], loc[1][5:]
timeout = timeout if timeout is not None else self.page.timeout
eles = make_session_ele(self.html).eles(loc)
t1 = perf_counter()
eles = make_session_ele(self.html).eles(loc)
while not eles and perf_counter() - t1 <= timeout:
try:
eles = make_session_ele(self.html).eles(loc)
except Exception:
pass
eles = make_session_ele(self.html).eles(loc)
if not eles:
return None if single else eles