上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 1 from openpyxl import load_workbook 2 3 #加载excel 4 wb_obj = load_workbook(filename="test_data.xlsx") 5 6 #获取所有表单名称 7 sheet_name_list = wb_obj.sheetna 阅读全文
posted @ 2022-11-21 00:28 Chaman囍 阅读(28) 评论(0) 推荐(0) 编辑
摘要: https://www.csdn.net/tags/NtjaAg2sMjMyMTQtYmxvZwO0O0OO0O0O.html 阅读全文
posted @ 2022-06-16 21:22 Chaman囍 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43813046/article/details/109203689?utm_medium=distribute.pc_aggpage_search_result.none-task-blog-2~aggregatepage~first_ra 阅读全文
posted @ 2022-06-16 17:35 Chaman囍 阅读(137) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/chushujin/article/details/109016922 阅读全文
posted @ 2022-04-12 11:59 Chaman囍 阅读(41) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/linuxchao/p/linuxchao-pytest-parametrize.html mark 标记用法:https://www.cnblogs.com/lfr0123/p/15907200.html 阅读全文
posted @ 2021-10-09 09:16 Chaman囍 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 原文地址:app 中有h5页面的时候,怎么去定位元素? - 程序员大本营 (pianshen.com) 阅读全文
posted @ 2021-08-12 16:13 Chaman囍 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 一、Appium 元素定位方法总结: https://www.cnblogs.com/cnkemi/p/9180525.html 二、注意:由于高版本Appium(从1.22.0开始)的服务和元素查看器分离,所以还需要下载Appium Inspector。否则打开Appium Server GUI, 阅读全文
posted @ 2021-08-05 23:05 Chaman囍 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.csdn.net/tulituqi/article/details/10124559 阅读全文
posted @ 2021-08-03 23:02 Chaman囍 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 匿名函数语法如下: lambda 参数1,参数2... : expression 匿名函数多用于临时调用一次的场景,更多的是将匿名与其他函数配合使用。 应用场景: 1 salaries={ 2 "james":5000, 3 "wade":6000, 4 'bobo':3000, 5 "lili": 阅读全文
posted @ 2021-07-23 19:00 Chaman囍 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 三元表达式: #常规方式如下: def ppp(x,y): if x>y: print(x) else: print(y) ppp(1,2) #利用三元表达式的方式实现代码如下: def ppp(x,y) print(x) if x>y else print(y) ppp(1,2) """三元表达式 阅读全文
posted @ 2021-07-20 22:52 Chaman囍 阅读(55) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页