出现AttributeError: module 'selenium.webdriver' has no attribute 'Firefox'的时候解决办法
程序员文章站
2022-04-16 16:24:33
...
当执行所有的程序时候都会出错,而且错误码一样:
>>> browser = webdriver.Firefox(firefox_binary=binary)
>>> AttributeError: module 'selenium.webdriver' has no attribute 'Firefox'
百思不得其解时候,网上的一句话提醒了我:
程序陷入了一个死循环。
所以这个时候能做的就是修改错误程序的名称,比如:
rename 文件 email.py为email16.py
再次运行的时候,就会正常!
有兴趣的可以加一下python爱好者的QQ群:812113097
这里有很多像你一样的伙伴,共同分享学习python的经验!上一篇: 大数算法之大数加减法
下一篇: C++的高精度减法
email.py
file to something else, aslib/http/client.py
is importing it instead of the real systememail
module. – John GordonNov 11 '16 at 19:34