This commit is contained in:
g1879 2023-03-02 17:15:07 +08:00
parent 9555afa396
commit 5a93fc20e6
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ def get_launch_args(opt):
if not has_user_path:
port = opt.debugger_address.split(':')[-1] if opt.debugger_address else '0'
path = Path(gettempdir()) / 'DrissionPage' / f'userData_{port}'
path.mkdir(parents=False, exist_ok=True)
path.mkdir(parents=True, exist_ok=True)
result.add(f'--user-data-dir={path}')
result = list(result)

View File

@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
setup(
name="DrissionPage",
version="3.2.6",
version="3.2.7",
author="g1879",
author_email="g1879@qq.com",
description="Python based web automation tool. It can control the browser and send and receive data packets.",