我正在将KLOV服务器从当前版本0.0.3升级到0.1.1,在v0.0.3中可以看到每个测试用例附带的图像(屏幕快照),但是在升级的klov上仅可见测试步骤< / p>
这在Mongodb v3.4.5上运行,带有extentxreports 3.1.2。
这就是我们附着纱布的方式
````指定mongoDb连接`''
klov.initMongoDbConnection(sExtentReportDbServer,Integer.parseInt(sExtentReportDbServerPort));
```指定项目''
klov.setProjectName(sProjectName);
日期=新的Date(); ````您必须指定一个reportName否则将使用默认时间戳。''
klov.setReportName(sProjectName +“ _” + date.toString());
URL of the KLOV server``
klov.setKlovUrl("http://" + sExtentReportServer + ":" + sExtentReportServerPort);enter image description here
初始化ExtentReports并附加HtmlReporter
extent = new ExtentReports();
初始化HtmlReporter
htmlReporter = new ExtentHtmlReporter(sHtmlReportName + ".html");
附加所有报告器``
程度上.attachReporter(htmlReporter,klov);