1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-21 05:41:54 +02:00

Merge pull request #1123 from fa0311/dev

This commit is contained in:
Nick Sweeting
2023-03-18 08:07:23 -06:00
committed by GitHub

View File

@@ -219,7 +219,7 @@ def get_headers(url: str, timeout: int=None) -> str:
def chrome_args(**options) -> List[str]: def chrome_args(**options) -> List[str]:
"""helper to build up a chrome shell command with arguments""" """helper to build up a chrome shell command with arguments"""
from .config import CHROME_OPTIONS from .config import CHROME_OPTIONS, CHROME_VERSION
options = {**CHROME_OPTIONS, **options} options = {**CHROME_OPTIONS, **options}
@@ -229,6 +229,9 @@ def chrome_args(**options) -> List[str]:
cmd_args = [options['CHROME_BINARY']] cmd_args = [options['CHROME_BINARY']]
if options['CHROME_HEADLESS']: if options['CHROME_HEADLESS']:
if int(CHROME_VERSION.split()[1].split('.')[0]) >= 111:
cmd_args += ("--headless=new",)
else:
cmd_args += ('--headless',) cmd_args += ('--headless',)
if not options['CHROME_SANDBOX']: if not options['CHROME_SANDBOX']: