From 6664927cd3f83930470527b5093797f5d7d59bc6 Mon Sep 17 00:00:00 2001 From: g1879 Date: Wed, 27 Mar 2024 17:25:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=81=87=E5=88=B0403=E6=97=B6=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E8=A7=A3=E5=86=B3=E6=96=B9=E6=B3=95=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/_base/driver.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/DrissionPage/_base/driver.py b/DrissionPage/_base/driver.py index 7dba12e..db243d7 100644 --- a/DrissionPage/_base/driver.py +++ b/DrissionPage/_base/driver.py @@ -201,7 +201,13 @@ class Driver(object): try: self._ws = create_connection(self._websocket_url, enable_multithread=True, suppress_origin=True) except WebSocketBadStatusException as e: - raise TargetNotFoundError(f'找不到页面:{self.id}。') if 'No such target id' in str(e) else e + txt = str(e) + if 'No such target id' in txt: + raise TargetNotFoundError(f'找不到页面:{self.id}。') + elif 'Handshake status 403 Forbidden' in txt: + raise RuntimeError('请升级websocket-client库。') + else: + raise e self._recv_th.start() self._handle_event_th.start() return True