click.twice()改为click.multiple()

This commit is contained in:
g1879 2023-11-21 18:00:15 +08:00
parent 11027b01b2
commit 5fa71a7f0a
2 changed files with 13 additions and 4 deletions

View File

@ -124,9 +124,12 @@ class Clicker(object):
x, y = offset_scroll(self._ele, offset_x, offset_y)
self._click(x, y, button, count)
def twice(self):
"""双击元素"""
self.at(count=2)
def multiple(self, times=2):
"""多次点击
:param times: 默认双击
:return: None
"""
self.at(count=times)
def _click(self, client_x, client_y, button='left', count=1):
"""实施点击
@ -141,3 +144,9 @@ class Clicker(object):
# sleep(.05)
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mouseReleased',
x=client_x, y=client_y, button=button)
# -------------即将废弃--------------
def twice(self):
"""双击元素"""
self.at(count=2)

View File

@ -22,6 +22,6 @@ class Clicker(object):
def at(self, offset_x: float = None, offset_y: float = None, button: str = 'left', count: int = 1) -> None: ...
def twice(self, by_js: bool = False) -> None: ...
def multiple(self, times: int = 2) -> None: ...
def _click(self, client_x: float, client_y: float, button: str = 'left', count: int = 1) -> None: ...