我正在使用 CommandLine cmdLine = new CommandLine("python");
cmdLine.addArgument("/my/python/script/script.py");
DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();
ExecuteWatchdog watchdog = new ExecuteWatchdog(60*1000);
Executor executor = new DefaultExecutor();
executor.setExitValue(1);
executor.setWatchdog(watchdog);
executor.execute(cmdLine, resultHandler);
// some time later the result handler callback was invoked so we
// can safely request the exit value
resultHandler.waitFor();
进行报告。运行我的protractor-multiple-cucumber-html-reporter-plugin
文件驱动程序后,调用并关闭,数据被发送到conf.js
文件,但没有以html文件显示报告。我已经附加了result.json
文件,请我是初学者帮助我解决此问题。
非常感谢
这是我在项目https://www.npmjs.com/package/protractor-multiple-cucumber-html-reporter-plugin中使用的报告链接
Conf.js
我想在拥有jsonFile的同时生成HTML文件。我使用过autogenerateHtml:是的,但是我的项目中仍然没有html文件。