mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
遇到403时显示解决方法提示
This commit is contained in:
parent
f8c77b76e7
commit
6664927cd3
@ -201,7 +201,13 @@ class Driver(object):
|
|||||||
try:
|
try:
|
||||||
self._ws = create_connection(self._websocket_url, enable_multithread=True, suppress_origin=True)
|
self._ws = create_connection(self._websocket_url, enable_multithread=True, suppress_origin=True)
|
||||||
except WebSocketBadStatusException as e:
|
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._recv_th.start()
|
||||||
self._handle_event_th.start()
|
self._handle_event_th.start()
|
||||||
return True
|
return True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user