3.2.17click()默认强制模拟点击

This commit is contained in:
g1879 2023-03-14 17:52:42 +08:00
parent 51ce706cd7
commit c2e8d86d38
5 changed files with 21 additions and 11 deletions

View File

@ -706,9 +706,7 @@ class ChromiumBase(BasePage):
sleep(interval)
while self.ready_state != 'complete':
sleep(.1)
if self._debug:
print('重试')
if show_errmsg:
if self._debug or show_errmsg:
print(f'重试 {to_url}')
if err:

View File

@ -1638,26 +1638,37 @@ class Click(object):
"""
self._ele = ele
def __call__(self, by_js=None, wait_loading=0):
def __call__(self, by_js=False, timeout=1, wait_loading=0):
"""点击元素
如果遇到遮挡可选择是否用js点击
:param by_js: 是否用js点击为None时先用模拟点击遇到遮挡改用js为True时直接用js点击为False时只用模拟点击
:param timeout: 模拟点击的超时时间等待元素可见不被遮挡进入视口
:param wait_loading: 等待页面进入加载状态超时时间
:return: 是否点击成功
"""
return self.left(by_js, wait_loading)
def left(self, by_js=None, wait_loading=0):
def left(self, by_js=False, timeout=1, wait_loading=0):
"""点击元素
如果遇到遮挡可选择是否用js点击
:param by_js: 是否用js点击为None时先用模拟点击遇到遮挡改用js为True时直接用js点击为False时只用模拟点击
:param timeout: 模拟点击的超时时间等待元素可见不被遮挡进入视口
:param wait_loading: 等待页面进入加载状态超时时间
:return: 是否点击成功
"""
if not by_js:
try:
self._ele.scroll.to_see()
if (self._ele.states.is_in_viewport and not self._ele.states.is_covered) or by_js is False:
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 self._ele.states.is_in_viewport and self._ele.states.is_enabled and self._ele.states.is_displayed:
can_click = True
break
if by_js is False or (can_click and not self._ele.states.is_covered):
client_x, client_y = self._ele.locations.viewport_midpoint if self._ele.tag == 'input' \
else self._ele.locations.viewport_click_point
self._click(client_x, client_y)
@ -1874,7 +1885,8 @@ class ChromiumSelect(object):
if not self.is_multi:
raise TypeError("只能对多项选框执行反选。")
for i in self.options:
i.click(by_js=True)
mode = 'false' if i.states.is_selected else 'true'
i.run_js(f'this.selected={mode};')
def clear(self):
"""清除所有已选项"""

View File

@ -433,9 +433,9 @@ class Click(object):
def __init__(self, ele: ChromiumElement):
self._ele: ChromiumElement = ...
def __call__(self, by_js: bool = None, wait_loading: Union[bool, float] = 0) -> bool: ...
def __call__(self, by_js: bool = False, timeout: float = None, wait_loading: Union[bool, float] = 0) -> bool: ...
def left(self, by_js: bool = None, wait_loading: Union[bool, float] = 0) -> bool: ...
def left(self, by_js: bool = False, timeout: float = None, wait_loading: Union[bool, float] = 0) -> bool: ...
def right(self): ...

View File

@ -310,7 +310,7 @@ class ChromiumPage(ChromiumBase):
:param timeout: 等待提示框出现的超时时间为None则使用self.timeout属性的值
:return: 提示框内容文本未等到提示框则返回None
"""
timeout = timeout or self.timeout
timeout = self.timeout if timeout is None else timeout
timeout = .1 if timeout <= 0 else timeout
end_time = perf_counter() + timeout
while not self._alert.activated and perf_counter() < end_time:

View File

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