上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: from common.readconfig import ReadConfigimport cx_Oracleclass HandleOracle(object): def __init__(self, sec): self.data = ReadConfig() # 读取数据库配置文件 ip = 阅读全文
posted @ 2021-05-18 09:56 书院小先生 阅读(1229) 评论(0) 推荐(0) 编辑
摘要: import configparserimport osclass ReadConfig: """定义一个读取配置文件""" def __init__(self, filepath=None): if filepath: configpath = filepath else: root_dir = 阅读全文
posted @ 2021-05-18 09:54 书院小先生 阅读(274) 评论(0) 推荐(0) 编辑
摘要: import osfrom common.readconfig import ReadConfigclass ReadCaseDate(object): """读取测试案例数据""" def readcasedate(self): allfilepath = [] self.datadir = Re 阅读全文
posted @ 2021-05-18 09:52 书院小先生 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 维护pip: python -m ensurepip python -m pip install --upgrade pip 安装pytest: pip install -U pytest pip3 install pytest -i http://pypi.douban.com/simple/ - 阅读全文
posted @ 2021-05-10 16:35 书院小先生 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 使用list和tuple list Python内置的一种数据类型是列表:list。list是一种有序的集合,可以随时添加和删除其中的元素。 比如,列出班里所有同学的名字,就可以用一个list表示: >>> classmates = ['Michael', 'Bob', 'Tracy'] >>> c 阅读全文
posted @ 2020-08-30 22:12 书院小先生 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 转接地址:https://blog.csdn.net/lnking1992/article/details/53465183 利用adb无线连接android手机进行调式 无需获得root权限 要想使用无线调试有两个必须条件 1.手机和我们的电脑要处于同一网络,就是两个设备之间的ip地址能够ping 阅读全文
posted @ 2020-08-23 21:38 书院小先生 阅读(649) 评论(0) 推荐(0) 编辑
摘要: 转载:https://www.cnblogs.com/t-ae/p/10182483.html newman run C:\Users\lianglj\Desktop\WEY-app.postman_collection.json -e C:\Users\lianglj\Desktop\WEY-ap 阅读全文
posted @ 2020-07-15 11:17 书院小先生 阅读(882) 评论(0) 推荐(0) 编辑
摘要: // 把scv中的参数导入到环境变量 postman.setEnvironmentVariable("inst_no",data.inst_no) postman.setEnvironmentVariable("merchant_no",data.merchant_no) postman.setEn 阅读全文
posted @ 2020-07-14 18:23 书院小先生 阅读(214) 评论(0) 推荐(0) 编辑
摘要: // pm.test("检查响应内容为", function () { // pm.response.to.have.body("******"); // }); pm.test("检查响应200", function () { pm.response.to.have.status(200); }) 阅读全文
posted @ 2020-07-14 14:09 书院小先生 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/imyalost/p/7751981.html 一、下载及安装 下载地址:https://jmeter-plugins.org/install/Install/ 下载后文件为一个jar包,将其放入jmeter安装目录下的lib/ext目录,然后重启 阅读全文
posted @ 2020-07-11 20:07 书院小先生 阅读(651) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页