如何在selenium中启用Chrome中的“allow-insecure-localhost”标志?

时间:2018-06-13 13:47:05

标签: python google-chrome selenium selenium-webdriver headless

我想从selenium启用“allow-insecure-localhost”标志 我怎么能这样做?

selenium:3.12.0,Python:3.6.5

Chrome驱动程序创建代码:

handshake failure

1 个答案:

答案 0 :(得分:4)

似乎你非常接近。根据文档--allow-insecure-localhost--应该如下所示:

options.add_argument('--allow-insecure-localhost')
  

--allow-insecure-localhost :允许忽略localhost上的TLS / SSL错误(无插页式广播,不阻止请求)