摘要:import json # 假设这是你已有的JSON字符串 existing_json_str = '{"name": "Alice", "age": 25}' # 解析JSON字符串为字典 data = json.loads(existing_json_str) # 定义新的字典数据 new_da
阅读全文
摘要:项目运行过程中遇见的warnning 问题: ..allure-pytest/utils.py: DeprecationWarning: invalid escape sequence '\l'return name.encode('ascii', 'backslashreplace').decod
阅读全文
摘要:pycharm运行时总是报红色提示: D:\JetBrains\PyCharm 5.0.4\helpers\pycharm\utrunner.py:2: DeprecationWarning: the imp module is deprecated in favour of importlib a
阅读全文
摘要:官网:https://pypi.org/project/jsonpath-rw/ https://jsonpath-rw.readthedocs.io/en/latest/ 介绍: 主要针对json数据进行解析操作 命令安装:pip install jsonpath-rw 导入使用:from jso
阅读全文
摘要:加载用例的方法: 方法一:#其他时候一般是使用的discover方法来查找当前工程下符合case数据 discover = unittest.defaultTestLoader.discover(start_dir=casepath, pattern='test*.py', top_level_di
阅读全文
摘要:这是os模块的具体介绍,不知道的可以看看: https://www.cnblogs.com/QiKa/p/13512513.html 通过结合 HTMLTestRunner 来加载用例,运行生成报告:(结合htmltestrunner是为了让报告好看一点,复用性更好,不然unittest原生的有点不
阅读全文
摘要:例:如下是针对一个login类写的测试case:class TestLoginPia(unittest.TestCase): def setUp(self): #初始化 self.s = requests.session() #初始化session()代码浏览器 self.f = TestPia(s
阅读全文