unhandled exception: input() : lost sys.stdin & ssl_client_socket_impl.cc(992) handshake failed

    当执行程序遇到 unhandled exception: input() : lost sys.stdin 这样的报错,主要是在打包的时候,添加了 -w 参数,把控制台窗口隐藏了,这在GUI界面时非常有用,但是如果是执行命令行程序的话,就不能带这个参数。



    另外当执行程序过程中出现 ssl_client_socket_impl.cc(992) handshake failed,虽然有时并不影响程序的执行,可以添加 options.add_argument(‘–ignore-certificate-errors’) 属性去屏蔽。

你可能感兴趣的:(ssl,selenium,python)