51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#sele
selenium之批量执行测试用例生成HTML结果文件
使用HTMLTestRunner运行测试套件,自动生成html测试报告:1importunittest,HTMLTestRunner,sendmail_html2importtime,os34case_dir='D:\pywork\pyworkspace\yzwx_selenium\batch_case\test_ca...
代码星球
·
2020-06-13
selenium
批量
执行
试用
生成
selenium之批量执行测试用例
把写好的测试用例放在指定目录下,使用discover函数扫描该目录,并根据关键字自动筛选需要执行的用例。本例使用Python3.6版本。1#遍历指定目录,批量执行测试用例2importunittest34case_dir='D:\test_case'567defsuites_run():8'''运行测试套件,批量执行测...
代码星球
·
2020-06-13
selenium
批量
执行
试用
selenium之使用unittest测试框架
1#测试角色权限管理页面功能2fromseleniumimportwebdriver3fromlogin_pageimportLoginPage4importrandom,time,unittest567classTestRole(unittest.TestCase):8defsetUp(self):9self.log...
代码星球
·
2020-06-13
selenium
使用
unittest
测试
框架
selenium之截图
selenium支持对当前页面保存截图,使用方法:driver.get_screenshot_as_file(file_path) 代码举例:......defget_screenshot(driver,path=''):'''保存页面截图'''n=0ifpath:passelse:path="D:\test...
代码星球
·
2020-06-13
selenium
截图
selenium之调用Javascript
selenium调用Javascript使用方法:driver.execute_script(js)使用JS获取元素文本值,代码片段如下:......js="return$('#searchKey').val()"val=driver.execute_script(js)#调用JavaScript获取输入框的值prin...
代码星球
·
2020-06-13
selenium
调用
Javascript
selenium之下载
#测试下载功能,保存文件到指定的目录#不同的浏览器配置是不同的,本例使用chrome浏览器#author:gongxr#date:2017-07-25importtimefromseleniumimportwebdriverfromlogin_pageimportLoginPage#实例化一个配置对象options=w...
代码星球
·
2020-06-13
selenium
下载
selenium之测试卫星资料页面操作(元素遍历)
#测试气象卫星资料页面功能#author:gongxr#date:2017-07-24importrandom,timefromseleniumimportwebdriverfromlogin_pageimportLoginPagelogin_obj=LoginPage()driver=webdriver....
代码星球
·
2020-06-13
selenium
测试
卫星
资料
页面
selenium之测试角色管理页面举例
#测试角色权限管理页面功能#author:xr#date:2017-07-20fromseleniumimportwebdriverfromlogin_pageimportLoginPageimportrandom,timelogin_obj=LoginPage()driver=webdriver.Chro...
代码星球
·
2020-06-13
selenium
测试
角色
管理
页面
selenium之封装登陆操作
#selenium封装登录操作举例importos,time#fromseleniumimportwebdriverclassLoginPage():'''登录模块'''def__init__(self,path=''):'''初始化加载驱动'''ifpath:chrome_path=pathelse:ch...
代码星球
·
2020-06-13
selenium
封装
登陆
操作
selenium之安装和登陆操作举例
安装selenium:python-mpipinstallselenium-3.4.3-py2.py3-none-any.whl 下载对应浏览器版本的驱动,且在环境变量PATH中指定驱动程序的存放路径,否则需要指定驱动文件路径。代码举例:#selenium登录操作举例importos,timefromsele...
代码星球
·
2020-06-13
selenium
安装
登陆
操作
举例
Oracle 树操作(select…start with…connect by…prior)
oracle树查询的最重要的就是select…startwith…connectby…prior语法了。依托于该语法,我们可以将一个表形结构的以树的顺序列出来。在下面列述了oracle中树型查询的常用查询方式以及经常使用的与树查询相关的oracle特性函数等,在这里只涉及到一张...
代码星球
·
2020-06-12
Oracle
操作
select
start
with
js操作select和option
1.动态创建selectfunctioncreateSelect(){ varmySelect=document.createElement_x("select");mySelect.id="mySelect";document.body.appendChild(mySelect);}2.添加选项optionfun...
代码星球
·
2020-06-11
js
操作
select
option
js 操作select和option
1.动态创建selectfunctioncreateSelect(){varmySelect=document.createElement_x("select");mySelect.id="mySelect";document.body.appendChild(mySelect);}2.添加选项optionfuncti...
代码星球
·
2020-06-11
js
操作
select
option
[jQueryUI] – Chosen:select下拉选择框美化插件及问题
Chosen 是一个支持jquery的select下拉框美化插件,它能让丑陋的、很长的select选择框变的更好看、更方便。不仅如此,它更扩展了select,增加了自动筛选的功能。它可对列表进行分组,同时也可禁用某些选择项。先来看下插件的效果: 跟这个比起来,原来的select样式是不是弱爆了!马上...
代码星球
·
2020-06-11
jQueryUI
Chosen
select
下拉
选择
jQuery获取Select选中的Text和Value,根据Value值动态添加属性等
语法解释:1.$("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2.varcheckText=$("#select_id").find("option:selected").text(); &nb...
代码星球
·
2020-06-10
Value
jQuery
获取
Select
中的
首页
上一页
...
29
30
31
32
33
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他