From 465ef1573491b418cc679a1591734abd7347d31b Mon Sep 17 00:00:00 2001 From: g1879 Date: Mon, 25 Dec 2023 21:16:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dtype()=E7=BB=84=E5=90=88?= =?UTF-8?q?=E9=94=AE=E6=97=A0=E6=95=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/_units/actions.py | 10 ++++++++-- DrissionPage/_units/actions.pyi | 9 +++++---- requirements.txt | 4 ++-- setup.py | 10 +++++----- 4 files changed, 20 insertions(+), 13 deletions(-) diff --git a/DrissionPage/_units/actions.py b/DrissionPage/_units/actions.py index d8a90c3..11c9ef7 100644 --- a/DrissionPage/_units/actions.py +++ b/DrissionPage/_units/actions.py @@ -276,11 +276,17 @@ class Actions: :param keys: 要按下的按键,特殊字符和多个文本可用list或tuple传入 :return: self """ + modifiers = [] for i in keys: for character in i: self.key_down(character) - sleep(.05) - self.key_up(character) + if character in ('\ue009', '\ue008', '\ue00a', '\ue03d'): + modifiers.append(character) + else: + sleep(.01) + self.key_up(character) + for m in modifiers: + self.key_up(m) return self def input(self, text): diff --git a/DrissionPage/_units/actions.pyi b/DrissionPage/_units/actions.pyi index 982ead1..8a56363 100644 --- a/DrissionPage/_units/actions.pyi +++ b/DrissionPage/_units/actions.pyi @@ -36,7 +36,8 @@ KEYS = Literal['NULL', 'CANCEL', 'HELP', 'BACKSPACE', 'BACK_SPACE', 'meta', 'g', 'h', 'j', 'k', 'l', ';', '\'', 'z', 'x', 'c', 'v', 'b', 'n', 'm', ',', '.', '/', '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', 'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '{', '}', 'A', 'S', 'D', -'F', 'G', 'H', 'J', 'K', 'L', ':', '"', 'Z', 'X', 'C', 'V', 'B', 'N', 'M', '<', '>', '?'] +'F', 'G', 'H', 'J', 'K', 'L', ':', '"', 'Z', 'X', 'C', 'V', 'B', 'N', 'M', '<', '>', '?' +] class Actions: @@ -89,11 +90,11 @@ class Actions: def right(self, pixel: int) -> Actions: ... - def key_down(self, key: KEYS) -> Actions: ... + def key_down(self, key: Union[KEYS, str]) -> Actions: ... - def key_up(self, key: KEYS) -> Actions: ... + def key_up(self, key: Union[KEYS, str]) -> Actions: ... - def type(self, keys: Union[str, list, tuple]) -> Actions: ... + def type(self, keys: Union[KEYS, str, list, tuple]) -> Actions: ... def input(self, text: Any) -> Actions: ... diff --git a/requirements.txt b/requirements.txt index b195908..57cde23 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,8 @@ requests lxml cssselect -DownloadKit>=2.0.0b1 -websocket-client +DownloadKit>=2.0.0b2 +websocket-client>=1.7.0 click tldextract psutil \ No newline at end of file diff --git a/setup.py b/setup.py index 0a417d0..66aeaf1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh: setup( name="DrissionPage", - version="4.0.0b28", + version="4.0.0b29", author="g1879", author_email="g1879@qq.com", description="Python based web automation tool. It can control the browser and send and receive data packets.", @@ -22,19 +22,19 @@ setup( 'lxml', 'requests', 'cssselect', - 'DownloadKit>=2.0.0b1', - 'websocket-client', + 'DownloadKit>=2.0.0b2', + 'websocket-client>=1.7.0', 'click', 'tldextract', 'psutil' ], classifiers=[ - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.8", "Development Status :: 4 - Beta", "Topic :: Utilities", "License :: OSI Approved :: BSD License", ], - python_requires='>=3.6', + python_requires='>=3.8', entry_points={ 'console_scripts': [ 'dp = DrissionPage.commons.cli:main',