1、安装python
https://www.python.org/
2、安装setuptools(python的基础包工具)
下载地址:https://pypi.python.org/pypi/setuptools
下载ez_setup.py文件
打开cmd,进入到存放ez_setup.py文件的目录,执行python ez_setup.py
3、安装pip(python的安装包管理工具)
下载地址:https://pypi.python.org/pypi/pip,下载pip-6.1.1.tar.gz
Cmd进入到解压缩后得文件目录,执行 python setup.py install
4、安装selenium
cmd进入Scripts 目录,执行pip install -U selenium
C:\Python27\Scripts > pip install -U selenium
5、demo
安装完成,可以试写一个小demo了
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
browser = webdriver.Firefox() # Get local session of firefox
browser.get("http://www.baidu.com") # Load page
browser.close()
如果要使用ie、chrom浏览器的话,还需下载对应的webdriver(下载文件 chromedriver.exe 和 IEDriverServer.exe)
时间: 2024-10-12 06:47:52