优化连接浏览器失败的反馈

This commit is contained in:
g1879 2023-03-02 21:06:46 +08:00
parent 5a93fc20e6
commit d7a046f4f6
3 changed files with 38 additions and 14 deletions

View File

@ -66,7 +66,7 @@ class ChromiumBase(BasePage):
json = self._control_session.get(f'http://{self.address}/json').json() json = self._control_session.get(f'http://{self.address}/json').json()
tab_id = [i['id'] for i in json if i['type'] == 'page'] tab_id = [i['id'] for i in json if i['type'] == 'page']
if not tab_id: if not tab_id:
raise BrowserConnectError('浏览器连接失败') raise BrowserConnectError('浏览器连接失败,可能是浏览器版本原因')
tab_id = tab_id[0] tab_id = tab_id[0]
self._driver_init(tab_id) self._driver_init(tab_id)
self._get_document() self._get_document()

View File

@ -81,7 +81,7 @@ class ChromiumPage(ChromiumBase):
json = self._control_session.get(f'http://{self.address}/json').json() json = self._control_session.get(f'http://{self.address}/json').json()
tab_id = [i['id'] for i in json if i['type'] == 'page'] tab_id = [i['id'] for i in json if i['type'] == 'page']
if not tab_id: if not tab_id:
raise BrowserConnectError('浏览器连接失败') raise BrowserConnectError('浏览器连接失败,可能是浏览器版本原因')
tab_id = tab_id[0] tab_id = tab_id[0]
self._driver_init(tab_id) self._driver_init(tab_id)

View File

@ -29,10 +29,12 @@ def connect_browser(option):
debugger_address = debugger_address[7:] if debugger_address.startswith('http://') else debugger_address debugger_address = debugger_address[7:] if debugger_address.startswith('http://') else debugger_address
ip, port = debugger_address.split(':') ip, port = debugger_address.split(':')
if ip not in ('127.0.0.1', 'localhost'): if ip not in ('127.0.0.1', 'localhost'):
test_connect(ip, port)
return None, None return None, None
if port_is_using(ip, port): if port_is_using(ip, port):
chrome_path = get_exe_from_port(port) if chrome_path == 'chrome' and system_type == 'windows' else chrome_path chrome_path = get_exe_from_port(port) if chrome_path == 'chrome' and system_type == 'windows' else chrome_path
test_connect(ip, port)
return chrome_path, None return chrome_path, None
args = get_launch_args(option) args = get_launch_args(option)
@ -54,6 +56,7 @@ def connect_browser(option):
debugger = _run_browser(port, chrome_path, args) debugger = _run_browser(port, chrome_path, args)
test_connect(ip, port)
return chrome_path, debugger return chrome_path, debugger
@ -137,6 +140,27 @@ def set_prefs(opt):
dump(prefs_dict, f) dump(prefs_dict, f)
def test_connect(ip, port):
"""测试浏览器是否可用
:param ip: 浏览器ip
:param port: 浏览器端口
:return: None
"""
end_time = perf_counter() + 10
while perf_counter() < end_time:
try:
tabs = requests_get(f'http://{ip}:{port}/json', timeout=3).json()
for tab in tabs:
if tab['type'] == 'page':
return
except Exception:
sleep(.2)
if ip in ('127.0.0.1', 'localhost'):
raise BrowserConnectError(f'{port}端口不是Chromium内核浏览器或该浏览器未允许控制。')
raise BrowserConnectError(f'{ip}:{port}浏览器无法链接。')
def _run_browser(port, path: str, args) -> Popen: def _run_browser(port, path: str, args) -> Popen:
"""创建chrome进程 """创建chrome进程
:param port: 端口号 :param port: 端口号
@ -146,19 +170,19 @@ def _run_browser(port, path: str, args) -> Popen:
""" """
arguments = [path, f'--remote-debugging-port={port}'] arguments = [path, f'--remote-debugging-port={port}']
arguments.extend(args) arguments.extend(args)
debugger = Popen(arguments, shell=False) return Popen(arguments, shell=False)
end_time = perf_counter() + 10 # end_time = perf_counter() + 10
while perf_counter() < end_time: # while perf_counter() < end_time:
try: # try:
tabs = requests_get(f'http://127.0.0.1:{port}/json').json() # tabs = requests_get(f'http://127.0.0.1:{port}/json', timeout=2).json()
for tab in tabs: # for tab in tabs:
if tab['type'] == 'page': # if tab['type'] == 'page':
return debugger # return debugger
except Exception: # except Exception:
sleep(.2) # sleep(.2)
#
raise BrowserConnectError # raise BrowserConnectError
def _make_leave_in_dict(target_dict: dict, src: list, num: int, end: int) -> None: def _make_leave_in_dict(target_dict: dict, src: list, num: int, end: int) -> None: