chrome-selenium环境搭建
1、安装python
在安装页面,记得勾选 add python to path
2、python ide集成工具
3、安装chrome浏览器
https://www.google.cn/chrome/
4、安装chrome的驱动
1、下载与chrome匹配的chromedriver
http://chromedriver.storage.googleapis.com/index.html
2、解压chromedriver ,并放到chrome的安装目录
3、把chromedriver的路径添加到系统环境变量 path
5、安装selenium
cmd - where pip # 查找本机安装的所有pip
# 如果结果只显示python下面有一个pip直接执行下面的语句
pip install selenium
# 如果有多个pip,通过 cd 切换到 python下的pip安装
firefox-selenium环境搭建(详细步骤)
1.安装火狐firefox 54(安装之前把网络断开,安装好后连网)
2.进入火狐-选项-高级-更新:选择不检查更新(更新关闭)
3.在附件组件中搜索添加附件如下:
1.selenium IDE button
2.firebug
3.firefinder for firebug
4.firepath
4.添加后重启火狐bug选项对所有网页启用
5.放置驱动在python目录下和scripts目录下
6.在cmd里面输入命令:pip install -U selenium
7.在python执行如下操作看是否安装成功:
第一个自动化脚本(背)
#百度搜索自动化脚本
from selenium import webdriver
import time
browser = webdriver.Firefox( ); #赋句柄
browser.get("http://www.baidu.com")#进入百度浏览器
browser.find_element_by_id("kw").send_keys("测试")
#send_keys()输入内容函数
time.sleep(3) #时间函数可以看到脚本运行情况
browser.find_element_by_id("su").click( ) #click()为单击函数
browser.quit( )
火狐录制脚本插件:Sideex, selenium IED button, Katalon Recorder