IP属地:湖南
get、post是我们常见的接口方式 区别: 安全性:post比get安全 请求参数:get的参数放在url里面(仅支持urlencode编码)...
如何搭建一整套自动化测试框架,必须要显得牛逼(思想) 如何集成python,selenium,unittest/pytest,github,je...
以管理员身份运行cmd 然后再执行pip的更新命令
问题:conftest好像不能再unittest框架里面执行,会报错无法找到contest里面fixture标记的函数 目前我的解决方式是:完全...
想偷懒,每次输入pytest ********太多了怎么办? 在pytest.ini文件中配置addopts addopts = -q --tb...
pip install pytest-html 安装插件 命令行执行: pytest --html=report_name.html (repo...
单个参数: @pytest.mark.parametrize('a', [0,1,2,3,4,5]) 多个参数:多个解释器 @pytest.ma...
pip install pytest-repeat 安装插件 再所要执行的用例上添加装饰器 @pytest.mark.repeat(10)
pip install pytest-rerunfailures 安装插件 执行的时候pytest --reruns 1(失败的用例再运行一次)