我使用selenium并尝试从python中的selenium导入选项模块:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
我收到此错误:
Traceback (most recent call last):
File "C:\Users\GHIE\Desktop\jeahx\kests\test2.pyw", line 2, in <module>
from selenium.webdriver.chrome.options import Options
ImportError: No module named options
从我看到的方式来看,我所拥有的硒没有名为&#34的选项;选项&#34; 但为什么?任何想法我怎么能解决这个问题? 我在Windows 7和python 2.7上 感谢
答案 0 :(得分:0)
在我看来,也许你没有安装好所有东西。也许检查一下这条路:
/usr/lib/python/dist-packages/selenium
并确保所有课程都在某处。 如果没有,请尝试卸载(假设您使用的是pip):
$ sudo pip uninstall selenium
然后重新安装。
$ sudo pip install selenium
现在再试一次。
from selenium.webdriver.chrome.options import Options
如果不起作用,请查看文档。