上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: https://www.cnblogs.com/wangiqngpei557/p/6026007.html https://blog.csdn.net/zhongguowangzhan/article/details/116237205 阅读全文
posted @ 2022-04-02 09:39 2orange 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/wulixia/p/11018040.html 阅读全文
posted @ 2022-03-25 00:00 2orange 阅读(28) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/joe235/p/14393412.html https://blog.csdn.net/chennuan1991/article/details/109018973 阅读全文
posted @ 2022-03-01 13:32 2orange 阅读(23) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/linuxchao/p/linuxchao-Jenkins-GitHub.html 阅读全文
posted @ 2022-02-20 18:27 2orange 阅读(53) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/se7enjean/p/13513131.html 阅读全文
posted @ 2022-02-20 14:30 2orange 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 打包所有用到的依赖包: 在控制台中输入:pip freeze > requirements.txt 安装所有用到的依赖包: 在控制台中输入:pip install -r requirements.txt 阅读全文
posted @ 2022-01-25 22:04 2orange 阅读(411) 评论(0) 推荐(0) 编辑
摘要: import pymysql con = pymysql.connect(host="xxxx", port=xxx, user="root", password="123456",charset="utf8",cursorclass=pymysql.cursors.DictCursor, data 阅读全文
posted @ 2022-01-14 21:28 2orange 阅读(148) 评论(0) 推荐(0) 编辑
摘要: https://www.newadmin.cn/archives/304 阅读全文
posted @ 2022-01-12 14:24 2orange 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 如果前置条件中要给用例传递数据怎么办:设置前后置条件时,yield出来 注意点:如果要在前置条件中传递数据给用例方法,那么不能使用在上面@pytest.mark.userfixtures() 这种方法给用例添加前置后置 from selenium import webdriver import py 阅读全文
posted @ 2022-01-11 23:48 2orange 阅读(336) 评论(0) 推荐(0) 编辑
摘要: """ 无论哪个级别的前置后置条件,添加时有两种方式: 方式一:一种是在定义用例方法时添加,如:def test_demo_01(self, case_fixture, class_fixture) 方式二:一种是在用例类的上面添加,如:@pytest.mark.usefixtures("class 阅读全文
posted @ 2022-01-11 23:37 2orange 阅读(204) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页