如何解决Extent report 无法加载CSS样式 的问题

Posted amy2012

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何解决Extent report 无法加载CSS样式 的问题相关的知识,希望对你有一定的参考价值。

how to fix the ExtentReport.html without css styple

See the highlight, add htmlReporter.config().setResourceCDN(ResourceCDN.EXTENTREPORTS);

private void init(List<XmlSuite> xmlSuites)
String suiteName = xmlSuites.get(0).getName();
ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter(OUTPUT_FOLDER + FILE_NAME);
htmlReporter.config().setDocumentTitle("ExtentReports: " + suiteName);
htmlReporter.config().setReportName(suiteName);
htmlReporter.config().setTestViewChartLocation(ChartLocation.TOP);
htmlReporter.config().setTheme(Theme.STANDARD);
htmlReporter.config().setChartVisibilityOnOpen(true);
htmlReporter.config().setEncoding("utf-8");
//Fix the report with css stype
htmlReporter.config().setResourceCDN(ResourceCDN.EXTENTREPORTS);

extent = new ExtentReports();
extent.attachReporter(htmlReporter);
extent.setReportUsesManualConfiguration(true);

After that, rerun the test, and open the report, it shows the css style as below.

技术图片

 

以上是关于如何解决Extent report 无法加载CSS样式 的问题的主要内容,如果未能解决你的问题,请参考以下文章

为啥无法加载 js/css 文件? [关闭]

django 解决css,js文件304导致无法加载显示问题

Chrome - Fetch API 无法加载文件。如何解决?

完美解决python flask如何直接加载html,css,js,image等下载的网页模板

vue3单页面引入公共的css,加了scoped但无法加deep,导致样式无法穿透,如何解决?

IE9 无法通过 SSL 加载 CSS [关闭]