gpt4 book ai didi

java - 如何生成 Klov 报告

转载 作者:行者123 更新时间:2023-11-30 02:10:48 28 4
gpt4 key购买 nike

我一直在尝试使用 Klov 生成报告,并且对此很陌生。首先,我安装了 MongoDb 3.2 并在 cmd 中对其进行了初始化,然后在我的项目中添加了 Klov 0.1.0 jar 和 Mongo-java-driver-3.4.3 jar。当我运行我的项目时,连接已初始化并生成了 Htmlreporter,但我无法在任何地方找到 Klov 报告。

我已经在cmd中初始化了MongoDb: I have initialized the MongoDb in the cmd

代码如下:

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中显示一些值: After running the code, it shows some values in the cmd

生成 Klov 报告的实际步骤是什么?

最佳答案

            extent = new ExtentReports();
KlovReporter klovReporter = new KlovReporter();
klovReporter.initMongoDbConnection("yourIPaddress", 27017);
klovReporter.setProjectName("My project");
klovReporter.setReportName("reportName");
klovReporter.setKlovUrl("http://yourIPaddress");
extent.attachReporter(klovReporter);

开始: - MongoDB 3.2命令 - 在cmd中运行Klov jar

使用浏览器导航至:http://localhost或您的 IP 地址。

关于java - 如何生成 Klov 报告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50147440/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com