python selenium 笔记六-发送最新邮件

from HTMLTestRunner import HTMLTestRunner
from email.mime.text import MIMEText
from email.header import Header
import smtplib
import unittest
import time
import os
from htmltestrunner import Baidu
def send_mail(file_new):
    f = open(file_new, 'rb')
    mail_body = f.read()
    f.close()

    msg = MIMEText(mail_body, 'html', 'utf-8')
    msg['Subject'] = Header("百度搜索测试报告", 'utf-8')

    smtp = smtplib.SMTP()
    smtp.connect("smtp.163.com")
    smtp.login("XXXXXXX@163.com", "XXXXXXXX")
    smtp.sendmail("XXXXXXXX@163.com", "XXXXXXXX@qq.com", msg.as_string())
    smtp.quit()
    print('email has send out')

# 查找测试报告目录,找到最新生成的测试报告文件
def new_report(testreport):
    # 重新按时间对目录下的文件进行排序
    list = os.listdir(testreport)
    list.sort(key=lambda fn: os.path.getmtime(testreport + "\\" + fn))
    print(('最新文件为:' + list[-1]))
    file_new = os.path.join(testreport, list[-1])
    print(file_new)
    return file_new

if __name__ == '__main__':
    test_report = 'F:\\selenium report'
    testunit = unittest.TestSuite()
    testunit.addTest(Baidu("test_baidu_search"))
    now = time.strftime("%Y-%m-%d %H_%M_%S")
    filename = test_report + '\\ ' + now + 'result.html'
    fp = open(filename, 'wb')
    runner = HTMLTestRunner(stream=fp, title='百度搜索测试报告', description='用例执行情况')
    runner.run(testunit)
    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、付费专栏及课程。

余额充值