From 9d8597c6bfcfa6d0228b4c43baeb6a049333fe50 Mon Sep 17 00:00:00 2001 From: g1879 Date: Sat, 28 May 2022 21:23:36 +0800 Subject: [PATCH] =?UTF-8?q?2.7.0=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/drission.py | 2 +- docs/版本历史.md | 18 +++++++++++++++--- setup.py | 2 +- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/DrissionPage/drission.py b/DrissionPage/drission.py index 80764d9..b6f1609 100644 --- a/DrissionPage/drission.py +++ b/DrissionPage/drission.py @@ -447,7 +447,7 @@ def _create_chrome(chrome_path: str, port: str, args: list, proxy: dict) -> tupl # ----------创建浏览器进程---------- try: - debugger = Popen(f'{chrome_path} --remote-debugging-port={port} {args}', shell=False) + debugger = Popen(f'"{chrome_path}" --remote-debugging-port={port} {args}', shell=False) if chrome_path == 'chrome.exe': from .common import get_exe_path_from_port diff --git a/docs/版本历史.md b/docs/版本历史.md index 45f8801..b0f5163 100644 --- a/docs/版本历史.md +++ b/docs/版本历史.md @@ -1,3 +1,15 @@ +# v2.7.0 + +- DriverPage + + - 增加`get_session_storage()`、`get_local_storage()`、`set_session_storage()`、`set_local_storage()`、`clean_cache()`方法 + + - `run_cdp()`的`cmd_args`参数改为`**cmd_args` + +- 关闭 driver 时会主动关闭 chromedriver.exe 的进程 + +- 优化关闭浏览器进程逻辑 + # v2.6.2 - d 模式增加`stop_loading()`方法 @@ -6,9 +18,9 @@ # v2.6.0 - 新增`Listener`类 - - 可监听浏览器数据包 - - 可异步监听 - - 可实现每监听到若干数据包执行操作 + - 可监听浏览器数据包 + - 可异步监听 + - 可实现每监听到若干数据包执行操作 - 放弃对selenium4.1以下的支持 - 解决使用新版浏览器时出现的一些问题 diff --git a/setup.py b/setup.py index 91f2c70..fa552ef 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="2.6.3", + version="2.7.0", author="g1879", author_email="g1879@qq.com", description="A module that integrates selenium and requests session, encapsulates common page operations.",