我正在尝试使用mocha-allure-reporter将屏幕截图作为附件添加到吸引力报告中。我没有收到任何错误,但是屏幕截图没有保存在./reports/allure-results中,也没有控制台日志。这是使用allure.createAttachment的正确方法吗?
declare const allure: any;
afterEach('first step', function () {
allure.createStep('initial', () => {
browser.takeScreenshot().then(function (png) {
allure.createAttachment('Screenshot', function () {
return new Buffer(png, 'base64');
}, 'image/png')();
console.log('screenshot saved');
});
});
});
config
mochaOpts: {
reporter: 'mocha-multi-reporters',
reporterOptions: {
reporterEnabled:
mocha-allure-reporter
//
//
mochaAllureReporterReporterOptions: {
targetDir: './reports/allure-results',
}