click.to_download()增加timeout参数;完善找chrome路径逻辑;调整quit()逻辑

This commit is contained in:
g1879 2024-02-08 10:13:14 +08:00
parent 70243a1fd1
commit 038d837dda
4 changed files with 24 additions and 11 deletions

View File

@ -316,14 +316,20 @@ def get_chrome_path(ini_path):
return None
# -----------从注册表中获取--------------
import winreg
from winreg import OpenKey, EnumValue, CloseKey, HKEY_CURRENT_USER, HKEY_LOCAL_MACHINE, KEY_READ
try:
key = winreg.OpenKey(winreg.HKEY_LOCAL_MACHINE,
r'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe',
reserved=0, access=winreg.KEY_READ)
k = winreg.EnumValue(key, 0)
winreg.CloseKey(key)
key = OpenKey(HKEY_CURRENT_USER,
r'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe',
reserved=0, access=KEY_READ)
k = EnumValue(key, 0)
CloseKey(key)
if k[1]:
return k[1]
key = OpenKey(HKEY_LOCAL_MACHINE,
r'SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe',
reserved=0, access=KEY_READ)
k = EnumValue(key, 0)
CloseKey(key)
return k[1]
except FileNotFoundError:

View File

@ -204,7 +204,12 @@ def stop_process_on_port(port, pid=None):
for conn in connections:
if conn.laddr.port == int(port):
try:
proc.terminate()
# proc.terminate()
parent = proc.parent()
if parent is None:
proc.kill()
elif parent.name() == 'explorer.exe':
proc.terminate()
except (NoSuchProcess, AccessDenied, ZombieProcess):
pass
except Exception as e:

View File

@ -140,13 +140,14 @@ class Clicker(object):
"""
self.at(count=times)
def to_download(self, save_path=None, rename=None, suffix=None, new_tab=False, by_js=False):
def to_download(self, save_path=None, rename=None, suffix=None, new_tab=False, by_js=False, timeout=None):
"""点击触发下载
:param save_path: 保存路径为None保存在原来设置的如未设置保存到当前路径
:param rename: 重命名文件名
:param suffix: 指定文件后缀
:param new_tab: 该下载是否在新tab中触发
:param by_js: 是否用js方式点击逻辑与click()一致
:param timeout: 等待下载触发的超时时间为None则使用页面对象设置
:return: DownloadMission对象
"""
if save_path:
@ -160,7 +161,7 @@ class Clicker(object):
tab = self._ele.page._page if new_tab else self._ele.page
self.left(by_js=by_js)
return tab.wait.download_begin()
return tab.wait.download_begin(timeout=timeout)
def to_upload(self, file_paths, by_js=False):
"""触发上传文件选择框并自动填入指定路径

View File

@ -38,7 +38,8 @@ class Clicker(object):
rename: str = None,
suffix: str = None,
new_tab: bool = False,
by_js: bool = False) -> DownloadMission: ...
by_js: bool = False,
timeout:float=None) -> DownloadMission: ...
def to_upload(self, file_paths: Union[str, Path, list, tuple], by_js: bool = False) -> None: ...