3.2.19click()强制点击时如元素无法滚动到视口,改用js;click()增加timeout参数

This commit is contained in:
g1879 2023-03-14 19:08:37 +08:00
parent de40467fa7
commit b932ab7390
2 changed files with 8 additions and 4 deletions

View File

@ -1662,11 +1662,15 @@ class Click(object):
can_click = False
timeout = self._ele.page.timeout if timeout is None else timeout
end_time = perf_counter() + timeout
while perf_counter() < end_time:
if timeout == 0:
if self._ele.states.is_in_viewport and self._ele.states.is_enabled and self._ele.states.is_displayed:
can_click = True
break
else:
end_time = perf_counter() + timeout
while perf_counter() < end_time or timeout == 0:
if self._ele.states.is_in_viewport and self._ele.states.is_enabled and self._ele.states.is_displayed:
can_click = True
break
if not self._ele.states.is_in_viewport:
by_js = True

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup(
name="DrissionPage",
version="3.2.18",
version="3.2.19",
author="g1879",
author_email="g1879@qq.com",
description="Python based web automation tool. It can control the browser and send and receive data packets.",