上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: 1 import json 2 3 #字典 ==> json 4 test_dict = {"key1":"val1","key2":None,"key3":True,"key4":False} 5 new_json = json.dumps(test_dict) 6 print(type(new_ 阅读全文
posted @ 2022-11-23 14:11 Chaman囍 阅读(50) 评论(0) 推荐(0)
摘要: 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囍 阅读(31) 评论(0) 推荐(0)
摘要: https://www.csdn.net/tags/NtjaAg2sMjMyMTQtYmxvZwO0O0OO0O0O.html 阅读全文
posted @ 2022-06-16 21:22 Chaman囍 阅读(25) 评论(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囍 阅读(149) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/chushujin/article/details/109016922 阅读全文
posted @ 2022-04-12 11:59 Chaman囍 阅读(45) 评论(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囍 阅读(116) 评论(0) 推荐(0)
摘要: 原文地址:app 中有h5页面的时候,怎么去定位元素? - 程序员大本营 (pianshen.com) 阅读全文
posted @ 2021-08-12 16:13 Chaman囍 阅读(45) 评论(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囍 阅读(65) 评论(0) 推荐(0)
摘要: 原文地址:http://blog.csdn.net/tulituqi/article/details/10124559 阅读全文
posted @ 2021-08-03 23:02 Chaman囍 阅读(119) 评论(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囍 阅读(463) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页