gpt4 book ai didi

email - 如何在 Cypress 中发送带有测试报告的电子邮件

转载 作者:行者123 更新时间:2023-12-04 08:08:23 24 4
gpt4 key购买 nike

我正在努力实现以下目标:

  1. 创建仅包含测试名称和状态(失败/通过)的简单测试报告
  2. 通过电子邮件将此报告作为基本 HTML 发送。

为此,我需要:

  1. 一个基本的记者,而不是默认的
  2. 图书馆,可以发送电子邮件。我已经尝试过 nodemailer。但是,当我将它与 Cypress 解决方案连接时,它没有发送任何电子邮件。我已经尝试了不同的邮箱帐户(nodemailer.createTestAccount(),一个来 self 公司,一个来自 SendGrid),但是这不起作用(我没有收到任何电子邮件)

关于第 2 点,这是我使用的代码示例。这是 index.js 文件中的代码 - 我需要在所有测试后发送它:

after(() => {

var nodemailer = require('nodemailer');
var sgTransport = require('nodemailer-sendgrid-transport');

var options = {
auth: {
api_user: 'sendgrid_USER',
api_key: 'sendgrid_APIKEY'
}
}

var client = nodemailer.createTransport(sgTransport(options));

var email = {
from: 'FROM_MAIL.PL',
to: 'TO_MAIL.PL',
subject: 'Hello',
text: 'Hello world',
html: '<b>Hello world</b>'
};

client.sendMail(email, function(err, info){
if (err ){
console.log(error);
}
else {
console.log('Message sent: ' + info.response);
}
});

});

最佳答案

Nodemailer是 Node.js 的模块,因此您需要在 Cypress 任务中运行它。

将此添加到您的 /cypress/plugins/index.js 文件

const sendAnEmail = (message) => {

const nodemailer = require('nodemailer');
const sgTransport = require('nodemailer-sendgrid-transport');
const options = {
auth: {
api_user: 'sendgrid_USER',
api_key: 'sendgrid_APIKEY'
}
}
const client = nodemailer.createTransport(sgTransport(options));

const email = {
from: 'FROM_MAIL.PL',
to: 'TO_MAIL.PL',
subject: 'Hello',
text: message,
html: '<b>Hello world</b>'
};
client.sendMail(email, function(err, info) {
return err? err.message : 'Message sent: ' + info.response;
});
}

module.exports = (on, config) => {
on('task', {
sendMail (message) {
return sendAnEmail(message);
}
})
}

然后在测试中(或在 /cypress/support/index.js 中进行所有测试)

after(() => {
cy.task('sendMail', 'This will be output to email address')
.then(result => console.log(result));
})

这是示例的基本重构 here ,您可以根据自己的要求进行调整。

关于email - 如何在 Cypress 中发送带有测试报告的电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66106520/

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