1:pip install selenium
2:如果想在selenium中使用 firefox(selenium默认就是firefox),对于新版的firefox,需要下载geckodriver,http://download.csdn.net/detail/ztzy520/9725887,我使用的是firefox50的版本,我电脑里,高版本的运行findby name时出问题。
3:如果运行报错,
browser
=
webdriver.Firefox()
browser.get(
"http://baidu.com"
)
lenium.common.exceptions.WebDriverException: Message: 'geckodriver' executable needs to be in PATH. 这是因为在Firefox高版本需要使用 geckodriver 来驱动,不再使用Seleniu默认自带的Firefox webdriver。 我们只需要在下面这个地址下载 geckodriver 并将 其所在的路径设为环境变量即可解决。
这时,运行程序,可以看到firefox自动启动了