修正写法

This commit is contained in:
g1879 2023-09-11 17:25:38 +08:00
parent ed2883e2b9
commit 3eee7132d5
2 changed files with 10 additions and 8 deletions

View File

@ -59,7 +59,7 @@ class ActionChains:
cx = x + offset_x
cy = y + offset_y
self._dr.Input.dispatchMouseEvent(type='mouseMoved', x=cx, y=cy, modifiers=self.modifier)
self._dr.call_method('Input.dispatchMouseEvent', type='mouseMoved', x=cx, y=cy, modifiers=self.modifier)
self.curr_x = cx
self.curr_y = cy
return self
@ -72,7 +72,8 @@ class ActionChains:
"""
self.curr_x += offset_x
self.curr_y += offset_y
self._dr.Input.dispatchMouseEvent(type='mouseMoved', x=self.curr_x, y=self.curr_y, modifiers=self.modifier)
self._dr.call_method('Input.dispatchMouseEvent', type='mouseMoved', x=self.curr_x, y=self.curr_y,
modifiers=self.modifier)
return self
def click(self, on_ele=None):
@ -170,7 +171,7 @@ class ActionChains:
"""
if on_ele:
self.move_to(on_ele)
self._dr.Input.dispatchMouseEvent(type='mousePressed', button=button, clickCount=count,
self._dr.call_method('Input.dispatchMouseEvent', type='mousePressed', button=button, clickCount=count,
x=self.curr_x, y=self.curr_y, modifiers=self.modifier)
return self
@ -179,7 +180,7 @@ class ActionChains:
:param button: 要释放的按键
:return: self
"""
self._dr.Input.dispatchMouseEvent(type='mouseReleased', button=button, clickCount=1,
self._dr.call_method('Input.dispatchMouseEvent', type='mouseReleased', button=button, clickCount=1,
x=self.curr_x, y=self.curr_y, modifiers=self.modifier)
return self
@ -192,7 +193,7 @@ class ActionChains:
"""
if on_ele:
self.move_to(on_ele)
self._dr.Input.dispatchMouseEvent(type='mouseWheel', x=self.curr_x, y=self.curr_y,
self._dr.call_method('Input.dispatchMouseEvent', type='mouseWheel', x=self.curr_x, y=self.curr_y,
deltaX=delta_x, deltaY=delta_y, modifiers=self.modifier)
return self

View File

@ -476,6 +476,7 @@ class BrowserDownloadManager(object):
@property
def missions(self):
"""返回所有未完成的下载任务"""
return self._missions
def add_mission(self, mission):