selenium生成测试报告并发送到指定邮箱

发送测试报告邮件

from HTMLTestRunner import HTMLTestRunner
import unittest
from email.mime.text import MIMEText
from email.header import Header
import smtplib
import time
import os

#定义发送邮件
def send_mail(file_new):
    f = open(file_new,"rb")
    mail_body = f.read()
    f.close()
    #编写HTML类型邮件正文
    msg = MIMEText(mail_body,"html","utf-8")
    msg["Subject"] = Header("自动化测试报告","utf-8")
    
    #发送邮箱服务器
    smtp = smtplib.SMTP()
    smtp.connect("smtp.qq.com")
    #发送邮箱用户/qq邮箱smtp的授权码
    smtp.login("xxxx@qq.com","xxxxx")
    #发送邮箱/接收邮箱/邮件主题
    smtp.sendmail("xxx@qq.com","xxxx@qq.com",msg.as_string())
    smtp.quit()
    print("email has send out")
    
#查找测试报告目录,找到最新生成的测试报告文件
def new_report(testreport):
    lists = os.listdir(testreport)
    #重新按时间对目录下的文件进行排序
    lists.sort(key=lambda fn: os.path.getmtime(testreport +"\\"+fn))
    file_new = os.path.join(testreport,lists[-1])
    print(file_new)
    return file_new

if __name__ == "__main__":
    #测试用例文件路径
    test_dir = "E:\\Workspace\\test_case\\test_a"
    #测试报告存放路径
    test_report = "E:\\"
    discover = unittest.defaultTestLoader.discover(test_dir,
                                                   pattern="test*.py")
    #时间格式
    now = time.strftime("%Y-%m-%d %H_%M_%S")
    filename = test_report + "\\" + now + "测试.html"
    fp = open(filename,"wb")
    runner = HTMLTestRunner(stream=fp,
                            title="测试报告",
                            description="测试执行情况:")
    runner.run(discover)
    fp.close()
    #发送测试报告
    new_report = new_report(test_report)
    send_mail(new_report)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值