AttributeError: module ‘selenium.webdriver‘ has no attribute ‘PhantomJS‘
目录
AttributeError: module ‘selenium.webdriver‘ has no attribute ‘PhantomJS‘
【常见模块错误】
【解决方案】
欢迎来到英杰社区https://bbs.csdn.net/topics/617804998
欢迎来到我的主页,我是博主英杰,211科班出身,就职于医疗科技公司,热衷分享知识,武汉城市开发者社区主理人
擅长.net、C++、python开发, 如果遇到技术问题,即可私聊博主,博主一对一为您解答
修改代码、商务合作:
Yan--yingjie
Yan--yingjie
Yan--yingjie
【常见模块错误】
如果出现模块错误
进入控制台输入:建议使用国内镜像源pip install 模块名称 -i https://mirrors.aliyun.com/pypi/simple我大致罗列了以下几种国内镜像源:清华大学https://pypi.tuna.tsinghua.edu.cn/simple 阿里云https://mirrors.aliyun.com/pypi/simple/ 豆瓣https://pypi.douban.com/simple/ 百度云https://mirror.baidu.com/pypi/simple/ 中科大https://pypi.mirrors.ustc.edu.cn/simple/ 华为云https://mirrors.huaweicloud.com/repository/pypi/simple/ 腾讯云https://mirrors.cloud.tencent.com/pypi/simple/
【解决方案】
错误信息“AttributeError: module ‘selenium.webdriver ‘ has no attribute ‘PhantomJS‘”表明在使用Selenium库时,尝试访问不存在的属性或方法。具体来说,是因为Selenium已经不再支持PhantomJS驱动程序。
可以得出以下结论:
PhantomJS已被弃用:从Selenium 3.14版本开始,PhantomJS驱动程序被移除,并且不再维护。这意味着在新版本的Selenium中,无法直接使用PhantomJS来执行自动化任务。
解决方案:
降级Selenium版本:如果需要继续使用PhantomJS,可以考虑将Selenium版本降级到一个旧版本,例如2.48.0。但需要注意的是,这种做法可能会带来其他兼容性问题。切换到其他无头浏览器:更推荐的做法是切换到其他更稳定、更活跃的无头浏览器,如Chrome的无头模式( headless mode)或Firefox的无头模式( headless mode)。这些替代方案能够提供更好的性能和兼容性。实际操作步骤:
卸载当前Selenium版本:首先通过命令行卸载当前安装的Selenium版本:pip uninstall selenium
安装指定版本的Selenium:然后安装一个较早的版本,例如2.48.0: pip install selenium==2.48.0
验证安装:安装完成后,可以通过运行简单的测试脚本来验证是否成功切换到指定版本。 总结起来,由于PhantomJS已被弃用,建议用户切换到其他无头浏览器以确保自动化测试或数据抓取工作的顺利进行.