摘要: 在conftest文件里添加钩子函数: def pytest_collection_modifyitems(items): """ 测试用例收集完成时,将收集到的item的name和nodeid的中文显示在控制台上,防止pytest-html报告中文乱码 """ for item in items: 阅读全文
posted @ 2022-02-16 16:08 测不准 阅读(953) 评论(0) 推荐(0) 编辑
摘要: 在conftest里要先定义一个selenium之类的driver。 @pytest.hookimpl(tryfirst=True, hookwrapper=True)def pytest_runtest_makereport(item, call): ''' 获取每个用例状态的钩子函数 :para 阅读全文
posted @ 2022-02-16 15:47 测不准 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 1、使用配置文件配置文件[global]trusted-host=pypi.doubanio.comindex-url=https://pypi.doubanio.com/simple配置文件放置位置Linux下:放在~/.pip/pip.confwindows下:用户文件夹\pip\pip.ini 阅读全文
posted @ 2022-02-16 15:34 测不准 阅读(934) 评论(0) 推荐(0) 编辑