用homewbrew与python安装selenium

时间:2017-06-20 17:41:58

标签: python selenium

我已将硒下载到我的Mac上。我正在尝试使用selenium在python中运行脚本,但我收到错误:

Traceback (most recent call last):
File "selenium.py", line 3, in <module>
    from selenium import webdrive
File "/Users/shynds23/python/selenium.py", line 3, in <module>
    from selenium import webdriver
ImportError: cannot import name webdriver

我的脚本有以下标题:

from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException
import time

关于如何修复它的任何想法?

1 个答案:

答案 0 :(得分:1)

尝试使用pip下载selenium:

pip install selenium

如果您的计算机上未安装pip,请运行:

python get-pip.py

以下是get-pip的链接:

https://bootstrap.pypa.io/get-pip.py