最近在用selenium写爬虫,使用的浏览器是Chrome浏览器,当访问浏览器时出现了以下报错信息:
解决方案:
浏览器要求您接受网站的证书。您可以设置默认情况下忽略这些错误,以免发生这些错误。
1、对于Chrome,您需要添加 -ignore-certificate-errors 和-ignore-ssl-errors ChromeOptions()参数:
options = webdriver.ChromeOptions()
options.add_argument('-ignore-certificate-errors')
options.add_argument('-ignore -ssl-errors')
driver = webdriver.Chrome(chrome_options = options)
2、对于Firefox,您需要将 accept_untrusted_certs 设置为True:
profile = webdriver.FirefoxProfile()
profile.accept_untrusted_certs = True
driver = webdriver.Firefox(firefox_profile = profile)
3、对于Internet Explorer,您需要设置 acceptSslCerts 所需的功能:
caps = webdriver.DesiredCapabilities.INTERNETEXPLORER
caps['acceptInsecureCerts'] = True
caps['acceptSslCerts'] = True
driver = webdriver.Ie(capabilities = capabilities)