mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
click.twice()改为click.multiple()
This commit is contained in:
parent
11027b01b2
commit
5fa71a7f0a
@ -124,9 +124,12 @@ class Clicker(object):
|
|||||||
x, y = offset_scroll(self._ele, offset_x, offset_y)
|
x, y = offset_scroll(self._ele, offset_x, offset_y)
|
||||||
self._click(x, y, button, count)
|
self._click(x, y, button, count)
|
||||||
|
|
||||||
def twice(self):
|
def multiple(self, times=2):
|
||||||
"""双击元素"""
|
"""多次点击
|
||||||
self.at(count=2)
|
:param times: 默认双击
|
||||||
|
:return: None
|
||||||
|
"""
|
||||||
|
self.at(count=times)
|
||||||
|
|
||||||
def _click(self, client_x, client_y, button='left', count=1):
|
def _click(self, client_x, client_y, button='left', count=1):
|
||||||
"""实施点击
|
"""实施点击
|
||||||
@ -141,3 +144,9 @@ class Clicker(object):
|
|||||||
# sleep(.05)
|
# sleep(.05)
|
||||||
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mouseReleased',
|
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mouseReleased',
|
||||||
x=client_x, y=client_y, button=button)
|
x=client_x, y=client_y, button=button)
|
||||||
|
|
||||||
|
# -------------即将废弃--------------
|
||||||
|
|
||||||
|
def twice(self):
|
||||||
|
"""双击元素"""
|
||||||
|
self.at(count=2)
|
||||||
|
@ -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 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: ...
|
def _click(self, client_x: float, client_y: float, button: str = 'left', count: int = 1) -> None: ...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user