set_argument('--headless')自动改为新写法

This commit is contained in:
g1879 2023-07-18 17:25:43 +08:00
parent e1daebd350
commit 0845814dc5
2 changed files with 6 additions and 3 deletions

View File

@ -146,8 +146,11 @@ class ChromiumOptions(object):
"""
self.remove_argument(arg)
if value is not False:
arg_str = arg if value is None else f'{arg}={value}'
self._arguments.append(arg_str)
if arg == '--headless' and value is None:
self._arguments.append('--headless=new')
else:
arg_str = arg if value is None else f'{arg}={value}'
self._arguments.append(arg_str)
return self
def remove_argument(self, value):

View File

@ -316,7 +316,7 @@ def set_charset(response):
content_type = response.headers.get('content-type', '').lower()
if not content_type.endswith(';'):
content_type += ';'
charset = search(r'charset[=: ]*(.*)?;', content_type)
charset = search(r'charset[=: ]*(.*)?;?', content_type)
if charset:
response.encoding = charset.group(1)