xzh

Results 2 issues of xzh

Error error executing code: GET https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js net::ERR_EMPTY_RESPONSE GET https://cdn.jsdelivr.net/npm/meting@2/dist/Meting.min.js net::ERR_EMPTY_RESPONSE DevTools 无法加载 SourceMap: 无法加载 chrome-extension://ljngjbnaijcbncmcnjfhigebomdlkcjo/content-script/browser-polyfill.min.js.map: 的内容HTTP 错误:状态代码 404,net::ERR_UNKNOWN_URL_SCHEME

conftest.py把原有的函数pytest_collection_modifyitems修改成以下内容就OK了 ```py @pytest.hookimpl(tryfirst=True) def pytest_collection_modifyitems(items): """ 解决数据驱动ids参数为中文时,控制台输出乱码问题 解决allure报告中文乱码 :param items: :return: """ for item in items: item.name = unicodedata.normalize('NFKC', item.name) item._nodeid = unicodedata.normalize('NFKC', item.nodeid) ```