2022年4月2日

pytest 自动赋值ids ids中文乱码问题

摘要: 1. 添加用例运行前的钩子,赋值自定义ids 2. ids中文乱码问题 阅读全文

posted @ 2022-04-02 19:57 老吃鸡 阅读(146) 评论(1) 推荐(0) 编辑

pytest 自定义命令行变量

摘要: 在执行pytest命令时,我们经常需要在命令行中传参。 可以用一下方法处理: # 接收一个env命令行参数 def pytest_addoption(parser): parser.addoption( "--env", action="store", default="", help="conf 阅读全文

posted @ 2022-04-02 19:42 老吃鸡 阅读(158) 评论(0) 推荐(0) 编辑

pytest UI自动化 失败截图

摘要: 分享一个使用pytest失败自动截图的方法 1. 功能当用例运行失败时,在当前界面截图并保存到测试报告中。 支持pytest-html 支持allure 代码如下: _driver = None @pytest.fixture(scope="function") def driver(request 阅读全文

posted @ 2022-04-02 19:40 老吃鸡 阅读(857) 评论(0) 推荐(0) 编辑

导航