mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
4.0.0b23微调参数
This commit is contained in:
parent
79c6eae2db
commit
774c6dd963
@ -642,7 +642,7 @@ class ChromiumElement(DrissionElement):
|
|||||||
self.page.scroll.to_see(self)
|
self.page.scroll.to_see(self)
|
||||||
x, y = offset_scroll(self, offset_x, offset_y)
|
x, y = offset_scroll(self, offset_x, offset_y)
|
||||||
self.page.run_cdp('Input.dispatchMouseEvent', type='mouseMoved', x=x, y=y,
|
self.page.run_cdp('Input.dispatchMouseEvent', type='mouseMoved', x=x, y=y,
|
||||||
_ignore=AlertExistsError, _timeout=0.3)
|
_ignore=AlertExistsError, _timeout=1)
|
||||||
|
|
||||||
def drag(self, offset_x=0, offset_y=0, duration=.5):
|
def drag(self, offset_x=0, offset_y=0, duration=.5):
|
||||||
"""拖拽当前元素到相对位置
|
"""拖拽当前元素到相对位置
|
||||||
|
@ -404,7 +404,7 @@ def keyDescriptionForString(_modifiers, keyString): # noqa: C901
|
|||||||
def send_key(page, modifier, key):
|
def send_key(page, modifier, key):
|
||||||
"""发送一个字,在键盘中的字符触发按键,其它直接发送文本"""
|
"""发送一个字,在键盘中的字符触发按键,其它直接发送文本"""
|
||||||
if key not in keyDefinitions:
|
if key not in keyDefinitions:
|
||||||
page.run_cdp('Input.insertText', text=key, _ignore=AlertExistsError, _timeout=0.3)
|
page.run_cdp('Input.insertText', text=key, _ignore=AlertExistsError, _timeout=1)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
description = keyDescriptionForString(modifier, key)
|
description = keyDescriptionForString(modifier, key)
|
||||||
@ -419,7 +419,7 @@ def send_key(page, modifier, key):
|
|||||||
'unmodifiedText': text,
|
'unmodifiedText': text,
|
||||||
'location': description['location'],
|
'location': description['location'],
|
||||||
'isKeypad': description['location'] == 3,
|
'isKeypad': description['location'] == 3,
|
||||||
'_ignore': AlertExistsError, '_timeout': 0.3}
|
'_ignore': AlertExistsError, '_timeout': 1}
|
||||||
|
|
||||||
page.run_cdp('Input.dispatchKeyEvent', **data)
|
page.run_cdp('Input.dispatchKeyEvent', **data)
|
||||||
data['type'] = 'keyUp'
|
data['type'] = 'keyUp'
|
||||||
@ -442,7 +442,7 @@ def input_text_or_keys(page, text_or_keys):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if text_or_keys.endswith(('\n', '\ue007')):
|
if text_or_keys.endswith(('\n', '\ue007')):
|
||||||
page.run_cdp('Input.insertText', text=text_or_keys[:-1], _ignore=AlertExistsError, _timeout=0.3)
|
page.run_cdp('Input.insertText', text=text_or_keys[:-1], _ignore=AlertExistsError, _timeout=1)
|
||||||
send_key(page, modifier, '\n')
|
send_key(page, modifier, '\n')
|
||||||
else:
|
else:
|
||||||
page.run_cdp('Input.insertText', text=text_or_keys, _ignore=AlertExistsError, _timeout=0.3)
|
page.run_cdp('Input.insertText', text=text_or_keys, _ignore=AlertExistsError, _timeout=1)
|
||||||
|
@ -85,7 +85,7 @@ class Actions:
|
|||||||
self.curr_x = x
|
self.curr_x = x
|
||||||
self.curr_y = y
|
self.curr_y = y
|
||||||
self._dr.run('Input.dispatchMouseEvent', type='mouseMoved', x=self.curr_x, y=self.curr_y,
|
self._dr.run('Input.dispatchMouseEvent', type='mouseMoved', x=self.curr_x, y=self.curr_y,
|
||||||
modifiers=self.modifier, _ignore=AlertExistsError, _timeout=0.3)
|
modifiers=self.modifier, _ignore=AlertExistsError, _timeout=1)
|
||||||
ss = .02 - perf_counter() + t
|
ss = .02 - perf_counter() + t
|
||||||
if ss > 0:
|
if ss > 0:
|
||||||
sleep(ss)
|
sleep(ss)
|
||||||
@ -188,7 +188,7 @@ class Actions:
|
|||||||
if on_ele:
|
if on_ele:
|
||||||
self.move_to(on_ele, duration=0)
|
self.move_to(on_ele, duration=0)
|
||||||
self._dr.run('Input.dispatchMouseEvent', type='mousePressed', button=button, clickCount=count,
|
self._dr.run('Input.dispatchMouseEvent', type='mousePressed', button=button, clickCount=count,
|
||||||
x=self.curr_x, y=self.curr_y, modifiers=self.modifier, _ignore=AlertExistsError, _timeout=0.3)
|
x=self.curr_x, y=self.curr_y, modifiers=self.modifier, _ignore=AlertExistsError, _timeout=1)
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def _release(self, button):
|
def _release(self, button):
|
||||||
@ -197,7 +197,7 @@ class Actions:
|
|||||||
:return: self
|
:return: self
|
||||||
"""
|
"""
|
||||||
self._dr.run('Input.dispatchMouseEvent', type='mouseReleased', button=button, clickCount=1,
|
self._dr.run('Input.dispatchMouseEvent', type='mouseReleased', button=button, clickCount=1,
|
||||||
x=self.curr_x, y=self.curr_y, modifiers=self.modifier, _ignore=AlertExistsError, _timeout=0.3)
|
x=self.curr_x, y=self.curr_y, modifiers=self.modifier, _ignore=AlertExistsError, _timeout=1)
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def scroll(self, delta_x=0, delta_y=0, on_ele=None):
|
def scroll(self, delta_x=0, delta_y=0, on_ele=None):
|
||||||
@ -210,7 +210,7 @@ class Actions:
|
|||||||
if on_ele:
|
if on_ele:
|
||||||
self.move_to(on_ele, duration=0)
|
self.move_to(on_ele, duration=0)
|
||||||
self._dr.run('Input.dispatchMouseEvent', type='mouseWheel', x=self.curr_x, y=self.curr_y,
|
self._dr.run('Input.dispatchMouseEvent', type='mouseWheel', x=self.curr_x, y=self.curr_y,
|
||||||
deltaX=delta_x, deltaY=delta_y, modifiers=self.modifier, _ignore=AlertExistsError, _timeout=0.3)
|
deltaX=delta_x, deltaY=delta_y, modifiers=self.modifier, _ignore=AlertExistsError, _timeout=1)
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def up(self, pixel):
|
def up(self, pixel):
|
||||||
@ -252,7 +252,7 @@ class Actions:
|
|||||||
return self
|
return self
|
||||||
|
|
||||||
data = self._get_key_data(key, 'keyDown')
|
data = self._get_key_data(key, 'keyDown')
|
||||||
data['_timeout'] = .3
|
data['_timeout'] = 1
|
||||||
data['_ignore'] = AlertExistsError
|
data['_ignore'] = AlertExistsError
|
||||||
self.page.run_cdp('Input.dispatchKeyEvent', **data)
|
self.page.run_cdp('Input.dispatchKeyEvent', **data)
|
||||||
return self
|
return self
|
||||||
@ -268,7 +268,7 @@ class Actions:
|
|||||||
return self
|
return self
|
||||||
|
|
||||||
data = self._get_key_data(key, 'keyUp')
|
data = self._get_key_data(key, 'keyUp')
|
||||||
data['_timeout'] = .3
|
data['_timeout'] = 1
|
||||||
data['_ignore'] = AlertExistsError
|
data['_ignore'] = AlertExistsError
|
||||||
self.page.run_cdp('Input.dispatchKeyEvent', **data)
|
self.page.run_cdp('Input.dispatchKeyEvent', **data)
|
||||||
return self
|
return self
|
||||||
|
@ -147,10 +147,10 @@ class Clicker(object):
|
|||||||
:return: None
|
:return: None
|
||||||
"""
|
"""
|
||||||
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mousePressed', x=client_x,
|
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mousePressed', x=client_x,
|
||||||
y=client_y, button=button, clickCount=count, _ignore=AlertExistsError, _timeout=0.3)
|
y=client_y, button=button, clickCount=count, _ignore=AlertExistsError, _timeout=.5)
|
||||||
# sleep(.05)
|
# sleep(.05)
|
||||||
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mouseReleased', x=client_x,
|
self._ele.page.run_cdp('Input.dispatchMouseEvent', type='mouseReleased', x=client_x,
|
||||||
y=client_y, button=button, _ignore=AlertExistsError, _timeout=0.2)
|
y=client_y, button=button, _ignore=AlertExistsError, _timeout=.5)
|
||||||
|
|
||||||
# -------------即将废弃--------------
|
# -------------即将废弃--------------
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user