在我按照此问题Cucumber HTML report with Protractor将此行添加到配置文件resultJsonOutputFile: 'report.json'
之后,我可以生成report.json文件,但在运行测试后此文件为空。
--------------- conf.js --------------
exports.config = {
allScriptTimeout: 60000, //To set up a timeout for each test executed on Protractor
baseUrl: 'http://localhost/wp/index.php',
seleniumAddress: 'http://127.0.0.1:4444/wd/hub',
//seleniumServerJar: 'selenium-server-standalone-2.48.2.jar',
framework: 'cucumber',
specs: [
'Feature/login.feature'
],
capabilities: {
browserName: 'firefox',
},
onPrepare : function () {
//driver.manage().window().setSize( width, height );
global.driver = browser.driver;
browser.ignoreSynchronization = true;
},
resultJsonOutputFile: 'report.json',
cucumberOpts: {
require: 'Feature/Steps/*_steps.js',
format: 'pretty',
defaultTimeoutInterval: 30000
}
};
我的配置错误或遗失了吗?你能帮我指导一下为量角器 - 黄瓜生成报告吗?非常感谢。
答案 0 :(得分:1)
更改以下代码应该可以解决问题。 (在IDE中刷新文件夹以查看report.json)
// resultJsonOutputFile:' report.json',
cucumberOpts: {
require: 'Feature/Steps/*_steps.js',
format: 'pretty',
format:'json:../report.json'
}