摘要: ![](https://img2020.cnblogs.com/blog/1913821/202008/1913821-20200826170241019-1975478002.png) ![](https://img2020.cnblogs.com/blog/1913821/202008/1913821-20200826170316797-1757704297.png) ![](https:// 阅读全文
posted @ 2020-08-26 17:04 不放弃自己 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 创建安装文件夹 mkdir /home/jenkins 添加权限 chown -R 1000 /home/jenkins/ 执行以下操作 docker run -d --name jenkins -p 8080:8080 -v /home/jenkins:/home/jenkins jenkins/ 阅读全文
posted @ 2020-08-21 14:41 不放弃自己 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 接口测试要点 app测试要点 阅读全文
posted @ 2020-08-21 13:48 不放弃自己 阅读(142) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/nianyifenzhizuo/p/10316735.html 阅读全文
posted @ 2020-08-04 17:32 不放弃自己 阅读(146) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/suwanbin-thought/articles/11741019.html https://blog.csdn.net/xiaojing0511/article/details/95179896 python -m pip install --up 阅读全文
posted @ 2020-08-03 13:14 不放弃自己 阅读(447) 评论(0) 推荐(0) 编辑
摘要: https://www.apishop.net/#/api/detail/?productID=215 阅读全文
posted @ 2020-07-31 17:24 不放弃自己 阅读(541) 评论(0) 推荐(0) 编辑
摘要: 一、准备接口测试的数据 比如当前要去测试一个登陆接口,先来分析下登陆传入哪些参数,有包括用户名username、密码password;分析注册返回结果并取响应结果中参数msg实现断言。 将注册中每条用例需要传入的这两个参数数据,以及需要断言的期望的code、msg整理到一个csv文档中,如下: 二、 阅读全文
posted @ 2020-07-31 17:06 不放弃自己 阅读(402) 评论(0) 推荐(0) 编辑
摘要: ####继承 class Animal(object): def run(self): print('Animal is running...') class Dog(Animal): pass class Cat(Animal): pass Dog().run() Cat().run() 运行结果 阅读全文
posted @ 2020-07-29 17:15 不放弃自己 阅读(142) 评论(0) 推荐(0) 编辑
摘要: ####实例变量和类变量 class Student: # 类的定义体 classroom = '101' # 类变量 address = 'beijing' def __init__(self, name, age): self.name = name self.age = age def pri 阅读全文
posted @ 2020-07-29 15:35 不放弃自己 阅读(479) 评论(0) 推荐(0) 编辑
摘要: class clsTest(): def __init__(self): print("我的名字叫:xxx") s = clsTest t = clsTest() print(s) print(t) print(' ') print(id(s)) print(id(clsTest)) print(' 阅读全文
posted @ 2020-07-29 14:55 不放弃自己 阅读(368) 评论(0) 推荐(0) 编辑