Insecure certificate - WebDriver 编辑
The insecure certificate error is a WebDriver error that occurs when the remotely controlled browser hits a certificate warning of any kind. This is usually the result of navigating to a website with an expired or invalid TLS certificate. Examples of invalid certificates include self-signed, revoked, and cryptographically insecure certificates.
Web browsers prevent and block traffic to domains with broken certificates since the communication with the server would be compromised. It is strongly recommended to fix the certificate situation instead of disabling certificate checks, even in test environments.
WebDriver does offer an acceptInsecureCerts
capability for disabling certificate checks for the length of the session’s duration, but it is important to emphasize that its use is highly discouraged and that using it is widely considered a weakness of the test environment.
Example
This is what will happen when navigating to a domain that has a self-signed TLS certificate using the Python client:
from selenium import webdriver from selenium.common import exceptions session = webdriver.Firefox() try: session.get("https://self-signed.badssl.com/") except exceptions.InsecureCertificateException as e: print("Hit insecure cert on {}".format(session.current_url)
Output:
Hit an insecure cert on https://self-signed.badssl.com/
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论