From de40467fa71dd2a8bef364ec72c7ebced7b9a000 Mon Sep 17 00:00:00 2001 From: g1879 Date: Tue, 14 Mar 2023 19:02:11 +0800 Subject: [PATCH] =?UTF-8?q?3.2.18click()=E5=BC=BA=E5=88=B6=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E6=97=B6=E5=A6=82=E5=85=83=E7=B4=A0=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=BB=9A=E5=8A=A8=E5=88=B0=E8=A7=86=E5=8F=A3=EF=BC=8C=E6=94=B9?= =?UTF-8?q?=E7=94=A8js=EF=BC=9Bclick()=E5=A2=9E=E5=8A=A0timeout=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/chromium_element.py | 2 +- DrissionPage/chromium_element.pyi | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/DrissionPage/chromium_element.py b/DrissionPage/chromium_element.py index c65244b..5cb0717 100644 --- a/DrissionPage/chromium_element.py +++ b/DrissionPage/chromium_element.py @@ -1646,7 +1646,7 @@ class Click(object): :param wait_loading: 等待页面进入加载状态超时时间 :return: 是否点击成功 """ - return self.left(by_js, wait_loading) + return self.left(by_js, timeout, wait_loading) def left(self, by_js=False, timeout=1, wait_loading=0): """点击元素 diff --git a/DrissionPage/chromium_element.pyi b/DrissionPage/chromium_element.pyi index 123af53..64c77ca 100644 --- a/DrissionPage/chromium_element.pyi +++ b/DrissionPage/chromium_element.pyi @@ -433,9 +433,9 @@ class Click(object): def __init__(self, ele: ChromiumElement): self._ele: ChromiumElement = ... - def __call__(self, by_js: bool = False, timeout: float = None, wait_loading: Union[bool, float] = 0) -> bool: ... + def __call__(self, by_js: bool = False, timeout: float = 1, wait_loading: Union[bool, float] = 0) -> bool: ... - def left(self, by_js: bool = False, timeout: float = None, wait_loading: Union[bool, float] = 0) -> bool: ... + def left(self, by_js: bool = False, timeout: float = 1, wait_loading: Union[bool, float] = 0) -> bool: ... def right(self): ... diff --git a/setup.py b/setup.py index a48f68a..2a108c8 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="3.2.17", + version="3.2.18", author="g1879", author_email="g1879@qq.com", description="Python based web automation tool. It can control the browser and send and receive data packets.",