解决ImportError: cannot import name webdriver

今天安装了Selenium并配置了ChromeDriver,接下来就是搞个代码试一下,然而出现了错误,懊恼之极。。。

具体报错原因如下:

Traceback (most recent call last):
  File "/Users/zhaohm/Desktop/python/selenium.py", line 4, in 
    from selenium import webdriver
  File "/Users/zhaohm/Desktop/python/selenium.py", line 4, in 
    from selenium import webdriver
ImportError: cannot import name webdriver

大概就是说不能引入名字为webdriver的库,令我百思不得其解,最终经过查资料才得知错误原因何在:

代码完全没有问题,问题就出在该文件的命名问题上,由于是想要实验一下Selenium的功效,所以就将这个文件命名为selenium

在当前目录有个明教selenium的文件,Python会先导入这个文件,然后再导入标准库里面的selenium.py

解决方案:

修改文件命名即可,不能是selenium就行

你可能感兴趣的:(解决ImportError: cannot import name webdriver)