web自动化
文章平均质量分 68
ding773655686
Wake Me Up
展开
-
python+selenium_Web自动化环境搭建
环境搭建1 python 3.6.42 pycharm3 selenium 2.53.14 firefox 40.0.3 1) 自定义 2) 取消更新工具之间版本匹配python: https://pypi.python.org/pypi/selenium/2.53.1#downloadsselenium 2.53.1匹配 python解释器...原创 2018-08-25 10:34:43 · 538 阅读 · 0 评论 -
Python+selenium+css选择器_元素定位
根据类名定位元素1 .box2根据ID定位元素2 #div1定位所有元素3 *直接用标签定位4 p代表 选择div 和 p 里面的 所有元素 是不分层级的1 div,p 代表 选择div 内部的所有P 包括子类的子类的p2 div p 代表 选择 父类div 元素内所有元素p 3div > p ...原创 2018-08-25 10:52:52 · 3693 阅读 · 0 评论 -
selenium+重点操作步骤
****重点1:脚本编写流程:4大步 步骤1:创建浏览器对象 步骤2:获取页面 步骤3:操作页面 步骤4:关闭页面 步骤1:1) 导入模块 2)driver = webdriver.Firefox()---类似的操作情况 步骤2:1)构建url:必须包含完整的协议名:http 例如:url = "h...原创 2018-08-25 10:57:01 · 794 阅读 · 0 评论 -
Python+unittest框架讲解
想用HTML显示 出来需要有这个文件做加持 在附件里面from commonlib import HTMLTestRunnerimport unittestimport timeclass Mytest(unittest.TestCase): def setUp(self): print("setup") def test_001(self): ...原创 2018-08-25 11:09:44 · 887 阅读 · 0 评论