selenium:IE浏览器获取cookie提示Could not retrieve cookies
Posted dinghanhua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium:IE浏览器获取cookie提示Could not retrieve cookies相关的知识,希望对你有一定的参考价值。
from selenium import webdriver url = "https://www.baidu.com" dr = webdriver.Ie() dr.get(url) print(‘all cookies : ‘,dr.get_cookies()) dr.quit()
报错信息:
说明是驱动问题, 驱动和浏览器不匹配,且提示不要用64位ie驱动ie10or11,即使是在64位的电脑上。
我安装的是64位的驱动。换成32位的ie驱动问题消除。
IE驱动包下载地址:
https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver
http://selenium-release.storage.googleapis.com/index.html 选择selenium版本对应的驱动下载
查看selenium版本: pip show selenium
以上是关于selenium:IE浏览器获取cookie提示Could not retrieve cookies的主要内容,如果未能解决你的问题,请参考以下文章
如何使用C#中的Selenium Webdriver使用Chrome浏览器的Cookie?
selenium自动化---获取登录成功后,浏览器中存储的cookie