diff --git a/DrissionPage/common.py b/DrissionPage/common.py index 74d00be..28ec24b 100644 --- a/DrissionPage/common.py +++ b/DrissionPage/common.py @@ -10,7 +10,7 @@ from platform import system from re import split, search, sub from shutil import rmtree from subprocess import Popen -from time import perf_counter +from time import perf_counter, sleep from typing import Union from zipfile import ZipFile from urllib.parse import urlparse, urljoin, urlunparse @@ -578,8 +578,8 @@ def _run_browser(port, path: str, args) -> Popen: for tab in tabs: if tab['type'] == 'page': return debugger - except requests_connection_err: - pass + except Exception: + sleep(.2) raise ConnectionError('无法连接浏览器。') diff --git a/setup.py b/setup.py index 5c846b2..22e624a 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.0.9", + version="3.0.10", author="g1879", author_email="g1879@qq.com", description="A module that integrates selenium and requests session, encapsulates common page operations.",