python+selenium(8)---pytest+allure用例执行失败截图并展示在报告中
实现该功能要用到pytest中的hook函数(钩子函数),如下:可直接使用该代码#用例失败后自动截图@pytest.hookimpl(tryfirst=True,hookwrapper=True)defpytest_runtest_makereport(item,call):"""获取用例执行结果的钩子函数:paramitem::paramcall::return:"""outcome=yield