如何从硒中启用 Chrome 中的 "allow-insecure-localhost" 标志?
How to enable an "allow-insecure-localhost" flag in Chrome from selenium?
我想从 selenium 中启用 "allow-insecure-localhost" 标志。
我该怎么做?
硒:3.12.0,Python:3.6.5
Chrome驱动程序创建代码:
def create_driver():
options = Options()
if sys.platform == "darwin":
options.binary_location = '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'
options.add_experimental_option("detach", True)
options.add_argument('allow-insecure-localhost') # I tried to be enable, but it does not affect to chrome.
if sys.platform == "win32":
chromedriver_path = r".\chromedriver"
else:
chromedriver_path = "../chromedriver"
driver = webdriver.Chrome(chromedriver_path, chrome_options=options)
return driver
看来你很接近。根据文档 --allow-insecure-localhost
应该在 --
之前,如下所示:
options.add_argument('--allow-insecure-localhost')
--allow-insecure-localhost
: Enables TLS/SSL errors on localhost to be ignored (no interstitial, no blocking of requests)
我想从 selenium 中启用 "allow-insecure-localhost" 标志。
我该怎么做?
硒:3.12.0,Python:3.6.5
Chrome驱动程序创建代码:
def create_driver():
options = Options()
if sys.platform == "darwin":
options.binary_location = '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'
options.add_experimental_option("detach", True)
options.add_argument('allow-insecure-localhost') # I tried to be enable, but it does not affect to chrome.
if sys.platform == "win32":
chromedriver_path = r".\chromedriver"
else:
chromedriver_path = "../chromedriver"
driver = webdriver.Chrome(chromedriver_path, chrome_options=options)
return driver
看来你很接近。根据文档 --allow-insecure-localhost
应该在 --
之前,如下所示:
options.add_argument('--allow-insecure-localhost')
--allow-insecure-localhost
: Enables TLS/SSL errors on localhost to be ignored (no interstitial, no blocking of requests)