我想从selenium启用“allow-insecure-localhost”标志 我怎么能这样做?
selenium:3.12.0,Python:3.6.5
Chrome驱动程序创建代码:
handshake failure
答案 0 :(得分:4)
似乎你非常接近。根据文档--allow-insecure-localhost
,--
应该如下所示:
options.add_argument('--allow-insecure-localhost')
--allow-insecure-localhost
:允许忽略localhost上的TLS / SSL错误(无插页式广播,不阻止请求)