报错ImportError: cannot import name ‘webdriver‘ from partially initialized module ‘selenium‘ (most lik
python中使用selenium自动化报错,ImportError: cannot import name 'webdriver' from partially initialized module 'selenium' (most likely due to a circular import)解决方案,导入from selenium import webdriver提示的报错
·
python中selenium自动化报错
报错信息
ImportError: cannot import name 'webdriver' from partially initialized module 'selenium' (most likely due to a circular import)
from selenium import webdriver
解释:
在当前目录有个名称为selenium.py的文件,Python会先导入这个文件,然后再导入标准库里面的selenium.py所以你需要将你,程序目录中的selenium.py进行改名,简单来说就是文件名称冲突了;
如下图
解决方案
直接把此selenium.py文件名,修改成其他的文件名即可。例如a.py
程序可以正常运行了
更多推荐
已为社区贡献9条内容
所有评论(0)