【10】Selenium+Python UI自动化测试 邮件发送测试报告(某积载系统实例-04)

测试报告需要发送给相关人员,但每次都要在report目录下去复制太麻烦,可以使用邮件模块自动将生成的报告发送给相关人员

1、 新增utils文件夹,用于存放工具文件

在utils下新增sendmail.py文件

代码
sendmail.py

python 复制代码
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from Test.pythonProject.test_selenium_pjz.run import report_dir


def sendmail():
    host = 'smtp.qq.com'
    sender = '****@qq.com'  # 发送方邮件地址
    passwd = '****'  # 发送方密码  需要在邮箱设置中开启SMTP服务 并获取授权码,此处是填写获取的授权码
    receiver = '****@qq.com'  # 接收报告方邮件地址

    msg = MIMEMultipart()
    msg['from'] = sender
    msg['to'] = receiver
    msg['subject'] = '主题'
    msg.attach(MIMEText('邮件正文'))
    import os
    print(os.path.abspath(__file__))
    att1 = MIMEText(open(report_dir, 'rb').read().decode('utf-8'), 'base64', 'utf-8')
    att1["Content-Type"] = 'application/octet-stream'
    # 这里的filename可以任意写,写什么名字,邮件中显示什么名字
    att1["Content-Disposition"] = 'attachment; filename="report.html"'
    msg.attach(att1)

    try:
        smtpobj = smtplib.SMTP_SSL(host, port=465)#我使用的是QQ邮箱 所以用这个方法,不同的邮箱,这个方法可能不同,如果使用错误的方法,可能会导致连接关闭问题,无法发送邮件
        smtpobj.login(sender, passwd)
        smtpobj.sendmail(sender, receiver, msg.as_string())
        smtpobj.quit()
        print('send success')
    except smtplib.SMTPException as e:
        print(e)
        print('send err')

2、 修改run.py 调用sendmail函数
代码
run.py

python 复制代码
import unittest
import time
from HTMLTestRunner import HTMLTestRunner
from Test.pythonProject.test_selenium_pjz.utils import sendmail

testdir = "./cases"
discover = unittest.defaultTestLoader.discover(start_dir=testdir, pattern='test*.py')
cur_time = time.strftime('%Y-%m-%d %H_%M_%S', time.localtime(time.time()))
report_name = "HTMLReport"+cur_time+".html"
report_dir="./report/{}".format(report_name)

if __name__ == '__main__':

    with open(report_dir, 'w', encoding='utf-8') as f:
        runner = HTMLTestRunner.HTMLTestRunner(stream=f,
                                title='pjz测试报告名称',
                                description='pjz 测试描述信息',
                                verbosity=2)
        runner.run(discover)

    sendmail.sendmail()
相关推荐
数据智能老司机11 分钟前
精通 Python 设计模式——创建型设计模式
python·设计模式·架构
数据智能老司机1 小时前
精通 Python 设计模式——SOLID 原则
python·设计模式·架构
c8i3 小时前
django中的FBV 和 CBV
python·django
c8i3 小时前
python中的闭包和装饰器
python
这里有鱼汤6 小时前
小白必看:QMT里的miniQMT入门教程
后端·python
TF男孩16 小时前
ARQ:一款低成本的消息队列,实现每秒万级吞吐
后端·python·消息队列
该用户已不存在21 小时前
Mojo vs Python vs Rust: 2025年搞AI,该学哪个?
后端·python·rust
站大爷IP1 天前
Java调用Python的5种实用方案:从简单到进阶的全场景解析
python
用户8356290780511 天前
从手动编辑到代码生成:Python 助你高效创建 Word 文档
后端·python
c8i1 天前
python中类的基本结构、特殊属性于MRO理解
python