我需要将使用的浏览器的名称放到nightwatch-html-reporter的'reportFilename'中。
这意味着:当测试结束时,文件名将如下所示: firefox_1559642651723
我从安装中检查了Nightwatch中内置的xml报告程序。 xml报告程序自动在文件中显示浏览器的名称,我想要在nightwatch-html-reporter中这样的内容
对不起,我的英语。如果需要更多信息,请告诉我,我会尝试添加更多信息
var reporter = new HtmlReporter({
openBrowser: false,
themeName: 'default',
reportsDirectory: __dirname + '/reports',
reportFilename: "thereHaveToBeNameOfBrowserNameLikeFirefox_",
uniqueFilename: true
});
module.exports = {
reporter: reporter.fn
};
When i run the test like this:
nightwatch --test tests\folder\nameOfScript --e chrome
I expect that the browser name chrome will be added to the reportFilename