python+selenium 环境配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium 环境配置相关的知识,希望对你有一定的参考价值。
配置环境:
python:3.5
selenium:3.3.0
安装方式:python pip install -u selenium
windows: 10
firefox:52
因为firefox版本较高,所以需要专门的driver来驱动,需要下载geckodriver
百度网盘地址:http://pan.baidu.com/s/1dEBbkwp
放置位置
- Windows: python安装根目录(与python.exe 同一目录)
- Mac: /user/local/bin
测试代码:
from selenium import webdriver driver = webdriver.Firefox() driver.get("http://www.baidu.com") driver.find_element_by_id("kw").send_keys("Selenium2") driver.find_element_by_id("su").click() driver.quit()
我这边是完美运行:
以上是关于python+selenium 环境配置的主要内容,如果未能解决你的问题,请参考以下文章