File size: 500 Bytes
75bfc25 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from conf import LOCAL_CHROME_HEADLESS, LOCAL_CHROME_PATH
def get_browser_options():
options = {
'headless': LOCAL_CHROME_HEADLESS,
'args': [
'--disable-blink-features=AutomationControlled',
'--lang=zh-CN',
'--disable-infobars',
'--start-maximized',
'--no-sandbox',
'--disable-web-security'
]
}
if LOCAL_CHROME_PATH:
options['executable_path'] = LOCAL_CHROME_PATH
return options
|