安装selenium之前
在安装selenium之前应该安装好python,并且配置系统变量,
如果提示“python”既不是内部命令,也不是外部命令,那么你需要把
Python 的安装目录添加到系统变量 Path 中,操作步骤如下。
右击桌面上的“此电脑”,打开右键菜单,单击“属性→高级系统设置→高级→
环境变量”,在“系统变量”的“Path”中添加:
变量名:Path
变量值:;C:\Python37
python安装程序已经集成了pip,pip可以帮助我们更好的管理第三方包,在...\Python37\Scripts\目录下查看是否存在 pip.exe 文件,并确保该目录已添加到“环境变量”的“PATH”下面。打开Windows 命令提示符,输入“pip”命令,确保该命令可以执行。
通过‘pip’指令安装Selenium包
pip install selenium
显示如下则表示安装成功:
通过show 可以查看当前包的版本信息
pip show selenium
也可以指定版本号安装
pip install selenium==3.11.0
- pip的一些常用指令
pip install -U selenium # 安装最新版本号
pip show selenium # 查看当前包的版本信息
pip uninstall selenium # 卸载 Selenium
编写第一个自动化测试脚本
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://www.baidu.com")
driver.find_element_by_id("kw").send_keys("selenium")
driver.find_element_by_id("su").click()
driver.quit()
如果执行报如下错误:
说明我们还没有的 ChromeDriver 驱动文件,需要去下载对应你Chrome版本的驱动压缩文件,下载地址:https://sites.google.com/a/chromium.org/chromedriver/downloads
下载chromedriver_win32.zip这个文件,因为我Chrom是90版所以对应的也就是这个(下载可能有点慢)。
然后添加到环境变量的Path中,就可以解决。
右击“此电脑”,在右键菜单中单击“属性→高级系统设置→高级→环境变量→系统第 2 章 测试环境搭建 ∣ 15
变量→Path”,将 “存放浏览器驱动的” 目录添加到 Path 中
- 其他浏览器的驱动地址:
GeckoDriver(Firefox):https://github.com/mozilla/geckodriver/releases
ChromeDriver(Chrome):https://sites.google.com/a/chromium.org/chromedriver/home
IEDriverServer(IE):http://selenium-release.storage.googleapis.com/index.html
OperaDriver(Opera):https://github.com/operasoftware/operachromiumdriver/releases
MicrosoftWebDriver(Edge):https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver