调整ChromiumDriver逻辑

This commit is contained in:
g1879 2023-11-05 22:33:28 +08:00
parent 572f0d51c4
commit 9331721b44

View File

@ -49,10 +49,9 @@ class ChromiumDriver(object):
:param timeout: 超时时间为None表示无限 :param timeout: 超时时间为None表示无限
:return: 浏览器返回的数据 :return: 浏览器返回的数据
""" """
if 'id' not in message: self._cur_id += 1
self._cur_id += 1 ws_id = self._cur_id
message['id'] = self._cur_id message['id'] = ws_id
message_json = dumps(message) message_json = dumps(message)
if self._debug: if self._debug:
@ -68,35 +67,35 @@ class ChromiumDriver(object):
if timeout is not None: if timeout is not None:
timeout = perf_counter() + timeout timeout = perf_counter() + timeout
self.method_results[ws_id] = Queue()
try: try:
self.method_results[message['id']] = Queue()
self._ws.send(message_json) self._ws.send(message_json)
except OSError:
while not self._stopped.is_set(): self.method_results.pop(ws_id)
try:
return self.method_results[message['id']].get(timeout=.2)
except Empty:
if self.alert_flag:
self.alert_flag = False
return {'result': {'message': 'alert exists.'}}
if timeout is not None and perf_counter() > timeout:
return {'error': {'message': 'timeout'}}
continue
except Exception:
return None return None
finally: while not self._stopped.is_set():
self.method_results.pop(message['id'], None) try:
return self.method_results[ws_id].get(timeout=.2)
except Empty:
if self.alert_flag:
self.alert_flag = False
return {'result': {'message': 'alert exists.'}}
elif timeout is not None and perf_counter() > timeout:
return {'error': {'message': 'timeout'}}
continue
finally:
self.method_results.pop(ws_id)
def _recv_loop(self): def _recv_loop(self):
"""接收浏览器信息的守护线程方法""" """接收浏览器信息的守护线程方法"""
while not self._stopped.is_set(): while not self._stopped.is_set():
try: try:
self._ws.settimeout(1) # self._ws.settimeout(1)
msg_json = self._ws.recv() msg_json = self._ws.recv()
msg = loads(msg_json) msg = loads(msg_json)
except WebSocketTimeoutException: except WebSocketTimeoutException: