14. 成功解决:ssl_client_socket_impl.cc(992) handshake failed;returned -1,SSL error code 1,net_error -103
短信预约 -IT技能 免费直播动态提醒
❤️ 个人主页:水滴技术
🌸 订阅专栏:成功解决 BUG 合集
🚀 支持水滴:点赞👍 + 收藏⭐ + 留言💬
问题描述
今天使用 Python 的 selenium 时,一直在报如下错误:
[30616:22540:0328/093748.004:ERROR:ssl_client_socket_impl.cc(992)] handshake failed; returned -1, SSL error code 1, net_error -100
详细错误截图:
虽然该错误不会影响正常使用,但一直刷屏也很是烦人,于是想彻底解决一下。
解决方案
该提示是由于不安全的地址导致的,需要把这个错误屏蔽掉,可以使用 --ignore-certificate-errors
来屏蔽。屏蔽后发现还有其他错误提示,也一并解决了。
主要添加了三项:
# 忽略证书错误options.add_argument('--ignore-certificate-errors')# 忽略 Bluetooth: bluetooth_adapter_winrt.cc:1075 Getting Default Adapter failed. 错误options.add_experimental_option('excludeSwitches', ['enable-automation'])# 忽略 DevTools listening on ws://127.0.0.1... 提示options.add_experimental_option('excludeSwitches', ['enable-logging'])
下面是完整代码:
# http://chromedriver.storage.googleapis.com/index.htmlservice = Service("D:\chromedriver.exe")# 配置选项options = webdriver.ChromeOptions()# 忽略证书错误options.add_argument('--ignore-certificate-errors')# 忽略 Bluetooth: bluetooth_adapter_winrt.cc:1075 Getting Default Adapter failed. 错误options.add_experimental_option('excludeSwitches', ['enable-automation'])# 忽略 DevTools listening on ws://127.0.0.1... 提示options.add_experimental_option('excludeSwitches', ['enable-logging'])# 获取驱动driver = webdriver.Chrome(service=service, options=options)
重启后问题解决。
热门专栏
👍 《Python入门核心技术》
👍 《IDEA 教程:从入门到精通》
👍 《Java 教程:从入门到精通》
👍 《MySQL 教程:从入门到精通》
👍 《大数据核心技术从入门到精通》
来源地址:https://blog.csdn.net/weixin_67276852/article/details/129811248
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341