diff --git a/DrissionPage/_elements/chromium_element.py b/DrissionPage/_elements/chromium_element.py index 33d2cc8..db64ee5 100644 --- a/DrissionPage/_elements/chromium_element.py +++ b/DrissionPage/_elements/chromium_element.py @@ -642,7 +642,7 @@ class ChromiumElement(DrissionElement): self.page.scroll.to_see(self) x, y = offset_scroll(self, offset_x, offset_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): """拖拽当前元素到相对位置 diff --git a/DrissionPage/_functions/keys.py b/DrissionPage/_functions/keys.py index 88b5fd3..9ff2637 100644 --- a/DrissionPage/_functions/keys.py +++ b/DrissionPage/_functions/keys.py @@ -404,7 +404,7 @@ def keyDescriptionForString(_modifiers, keyString): # noqa: C901 def send_key(page, modifier, key): """发送一个字,在键盘中的字符触发按键,其它直接发送文本""" 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: description = keyDescriptionForString(modifier, key) @@ -419,7 +419,7 @@ def send_key(page, modifier, key): 'unmodifiedText': text, 'location': description['location'], 'isKeypad': description['location'] == 3, - '_ignore': AlertExistsError, '_timeout': 0.3} + '_ignore': AlertExistsError, '_timeout': 1} page.run_cdp('Input.dispatchKeyEvent', **data) data['type'] = 'keyUp' @@ -442,7 +442,7 @@ def input_text_or_keys(page, text_or_keys): return 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') 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) diff --git a/DrissionPage/_units/actions.py b/DrissionPage/_units/actions.py index f8248f4..f9da1bd 100644 --- a/DrissionPage/_units/actions.py +++ b/DrissionPage/_units/actions.py @@ -85,7 +85,7 @@ class Actions: self.curr_x = x self.curr_y = 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 if ss > 0: sleep(ss) @@ -188,7 +188,7 @@ class Actions: if on_ele: self.move_to(on_ele, duration=0) 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 def _release(self, button): @@ -197,7 +197,7 @@ class Actions: :return: self """ 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 def scroll(self, delta_x=0, delta_y=0, on_ele=None): @@ -210,7 +210,7 @@ class Actions: if on_ele: self.move_to(on_ele, duration=0) 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 def up(self, pixel): @@ -252,7 +252,7 @@ class Actions: return self data = self._get_key_data(key, 'keyDown') - data['_timeout'] = .3 + data['_timeout'] = 1 data['_ignore'] = AlertExistsError self.page.run_cdp('Input.dispatchKeyEvent', **data) return self @@ -268,7 +268,7 @@ class Actions: return self data = self._get_key_data(key, 'keyUp') - data['_timeout'] = .3 + data['_timeout'] = 1 data['_ignore'] = AlertExistsError self.page.run_cdp('Input.dispatchKeyEvent', **data) return self diff --git a/DrissionPage/_units/clicker.py b/DrissionPage/_units/clicker.py index a6c55a0..6d98dd4 100644 --- a/DrissionPage/_units/clicker.py +++ b/DrissionPage/_units/clicker.py @@ -147,10 +147,10 @@ class Clicker(object): :return: None """ 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) 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) # -------------即将废弃--------------