我一直在尝试使用 Klov 生成报告,并且是新手。首先,我安装了 MongoDb 3.2 并在 cmd 中对其进行了初始化,然后在我的项目中添加了 Klov 0.1.0 jar 和 Mongo-java-driver-3.4.3 jar。当我运行我的项目时,连接已经初始化并生成了 Htmlreporter,但我无法在任何地方找到 Klov 报告。
我已经在 cmd 中初始化了 MongoDb:
这里的代码:
htmlReporter = new ExtentHtmlReporter("TestReport.html");
htmlReporter.setAppendExisting(true);
klov = new KlovReporter();
report = new ExtentReports();
klov.initMongoDbConnection("localhost", 27017);
klov.setProjectName("MyKlov");
klov.setReportName("Build " + date.toString());
klov.setKlovUrl("http://localhost");
report.attachReporter(htmlReporter, klov);
report.setSystemInfo("OS", "Windows");
report.setSystemInfo("Host Name", "XXX");
report.setSystemInfo("Environment", "QA");
report.setSystemInfo("User Name", "XXXXXXX");
htmlReporter.config().setChartVisibilityOnOpen(true);
htmlReporter.config().setDocumentTitle(" Automation Testing");
htmlReporter.config().setReportName("Automation Test Report");
htmlReporter.config().setTestViewChartLocation(ChartLocation.TOP);
htmlReporter.config().setTheme(Theme.STANDARD);
logger = report.createTest("ROF");
运行代码后,它会在 cmd 中显示一些值:
生成 Klov 报告的实际步骤是什么?