【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()
相关推荐
HORSE RUNNING WILD33 分钟前
解决 PicGo 上传 GitHub图床及Marp中Github图片编译常见难题指南
css·python·github
ElenaYu1 小时前
mac安装cast
python·macos·cast
Dxy12393102161 小时前
python如何设置excel单元格边框样式
开发语言·python·excel
chaodaibing1 小时前
Python解析Excel入库如何做到行的拆分
开发语言·python·excel
dudly2 小时前
Python类的力量:第五篇:魔法方法与协议——让类拥有Python的“超能力”
开发语言·python
攻城狮7号2 小时前
Python爬虫第21节- 基础图形验证码识别实战
开发语言·爬虫·python·图形验证码识别
kpl_203 小时前
Python基础
开发语言·python
Jelian_3 小时前
element-ui的el-cascader增加全选按钮实现(附源码)
vue.js·ui·elementui
啥都鼓捣的小yao3 小时前
课程11. 计算机视觉、自编码器和生成对抗网络 (GAN)
人工智能·python·深度学习·神经网络·算法·生成对抗网络·计算机视觉