mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
set_argument('--headless')自动改为新写法
This commit is contained in:
parent
e1daebd350
commit
0845814dc5
@ -146,8 +146,11 @@ class ChromiumOptions(object):
|
|||||||
"""
|
"""
|
||||||
self.remove_argument(arg)
|
self.remove_argument(arg)
|
||||||
if value is not False:
|
if value is not False:
|
||||||
arg_str = arg if value is None else f'{arg}={value}'
|
if arg == '--headless' and value is None:
|
||||||
self._arguments.append(arg_str)
|
self._arguments.append('--headless=new')
|
||||||
|
else:
|
||||||
|
arg_str = arg if value is None else f'{arg}={value}'
|
||||||
|
self._arguments.append(arg_str)
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def remove_argument(self, value):
|
def remove_argument(self, value):
|
||||||
|
@ -316,7 +316,7 @@ def set_charset(response):
|
|||||||
content_type = response.headers.get('content-type', '').lower()
|
content_type = response.headers.get('content-type', '').lower()
|
||||||
if not content_type.endswith(';'):
|
if not content_type.endswith(';'):
|
||||||
content_type += ';'
|
content_type += ';'
|
||||||
charset = search(r'charset[=: ]*(.*)?;', content_type)
|
charset = search(r'charset[=: ]*(.*)?;?', content_type)
|
||||||
|
|
||||||
if charset:
|
if charset:
|
||||||
response.encoding = charset.group(1)
|
response.encoding = charset.group(1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user