python+selenium实现发送一封带附件的邮件

163邮件登录首页

登录成功断言是否有退出按钮

点击退出退出登录

from selenium import webdriver
import unittest
import time

class VisitSogouByChrome(unittest.TestCase):

    def setUp(self):
        # 启动Chrome浏览器
        self.driver = webdriver.Chrome(executable_path = "e:\\chromedriver.exe")

    def test_sendEmail(self):
        # 访问163邮箱的首页
        self.driver.get("https://mail.163.com/")
        # 打印当前网页的网址
        self.driver.maximize_window()
        #点击密码登录
        self.pwd_link = self.driver.find_element_by_xpath("//a[text()=‘密码登录‘]")
        self.pwd_link.click()
        #找到登录框的iframe
        login_input_iframe = self.driver.find_element_by_xpath("//iframe[contains(@id,‘x-URS-iframe‘)]")
        # 切换进登录框的iframe
        self.driver.switch_to.frame(login_input_iframe)

        self.user_name = self.driver.find_element_by_xpath("//input[@name=‘email‘]")
        self.pass_wd = self.driver.find_element_by_xpath("//input[@name = ‘password‘]")
        self.login_button =self.driver.find_element_by_xpath("//a[@id =‘dologin‘]")

        #清空用户名
        self.user_name.clear()
        self.user_name.send_keys("ff_gaofeng")
        self.pass_wd.send_keys("XXX")
        self.login_button.click()
        time.sleep(5)

        #点击“写信”button
        self.writer_button = self.driver.find_element_by_xpath("//span[text()=‘写 信‘]")
        self.writer_button.click()
        time.sleep(2)

        #输入收件人的邮箱
        self.addressee = self.driver.find_element_by_xpath("//input[contains(@aria-label,‘收件人地址输入框‘)]")
        self.addressee.send_keys(‘[email protected]‘)

        #输入邮件主题
        self.title = self.driver.find_element_by_xpath("//input[contains(@id,‘subjectInput‘)]")
        self.title.send_keys(‘发给自己的一封邮件‘)

        #上传文件
        self.uppload_file_link = self.driver.find_element_by_xpath("//input[@type = ‘file‘]")
        #self.uppload_file_link = self.driver.find_element_by_xpath("//a[text()=‘添加附件‘]")
        self.uppload_file_link.send_keys(r"D:\1.py")
        time.sleep(5)

        # 切换进入boby的iframe
        #boby_iframe = self.driver.find_element_by_xpath("//iframe[@class=‘APP-editor-iframe‘]")
        #self.driver.switch_to.frame(boby_iframe)
        self.driver.switch_to.frame(self.driver.find_element_by_xpath("//iframe[@class=‘APP-editor-iframe‘]"))

        # 输入邮件正文内容
        self.body = self.driver.find_element_by_xpath("html/body")
        self.body.send_keys("实现写邮件,上传附件的功能自动化用了。。。。。。。。")
        self.driver.switch_to.default_content()

        #点击“发送”按钮
        self.send_email = self.driver.find_element_by_xpath("//header//span[text()=‘发送‘]")
        self.send_email.click()

    def tearDown(self):
        # 退出IE浏览器
        self.driver.quit()

if __name__ == ‘__main__‘:
    unittest.main()

原文地址:https://www.cnblogs.com/ff-gaofeng/p/12014110.html

时间: 2024-10-03 04:37:40

python+selenium实现发送一封带附件的邮件的相关文章

java代码如何发送一封带图片的邮件

本章记录三个,1.java 发送普通的邮件  2.java发送带附件的邮件 3.java发送带图片的邮件 1.java发送普通邮件--首先要设置如下的几个具体的参数: public static String username = "***@163.com"; // 服务邮箱(from邮箱)public static String password = "*****"; // 邮箱密码public static String senderNick = "*

自动化测试发送带附件的邮件

自动化测试发送带附件的邮件 标签(空格分隔): 带附件邮件 在我们的自动化测试中,有时候会发送报告,有时候会发送带附件的报告,具体带附件的报告怎么操作呢? 具体的步骤如下述所示:如下是QQ邮箱为例 import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart # 用于传送附件 smtpserver = 'smtp.exmail.qq.com' user = '*

Android上发送带附件的邮件

准备工作-下载最新版本的JMail https://java.net/projects/javamail/pages/Home#Download_JavaMail_1.5.2_Release http://www.oracle.com/technetwork/java/javase/downloads/index-135046.html 在android上发送邮件方式: 第一种:借助GMail APP客户端,缺点是必须使用GMail帐号,有点是比较方便 不需要写很多代码,但是不是很灵活. 第二种

[Java] JavaMail 发送 html 格式、带附件的邮件

本案例演示发送 html 格式,可带附件的邮件发送.发送纯文本邮件的例子可参照上一篇博文JavaMail 简单案例. EmailHelper, Email 的帮助类,向帮助类提供 SMTP 服务器域名.用户名.密码.发送人邮箱.收件人邮箱.邮件主题.html 格式的内容(可选).附件(可选),便可发送一份邮件. SendEmailDemo, 演示发送邮件. import java.util.Properties; import javax.activation.DataHandler; impo

(转)用javamail发送带附件的邮件

本文转载自:http://redleaf.iteye.com/blog/78217 mail.java 代码 package mail; import java.util.* ; import java.io.* ; import javax.mail.* ; import javax.mail.internet.* ; import javax.activation.* ; public class Mail { //定义发件人.收件人.SMTP服务器.用户名.密码.主题.内容等 privat

C#发送带附件的邮件的代码

如下的代码是关于C#发送带附件的邮件的代码. MailMessage m = new MailMessage();m.Subject = "File attachment!";m.Body = "See the attached file.";m.Attachments.Add(new Attachment(@"C:test.txt"));SmtpClient client = new SmtpClient("smtp.w3mentor

【Mail】JavaMail发送带附件的邮件

上一篇讲了使用JavaMail发送普通邮件([Mail]JavaMail介绍及发送邮件(一)),本例讲发送复杂的邮件(带有附件的邮件) 生成一封复杂的邮件 新建一个JavaWeb的Maven工程,引入javamail.jar包,maven引用如下: 1 <!-- javamail --> 2 <dependency> 3 <groupId>javax.mail</groupId> 4 <artifactId>mail</artifactId

Apache Mail 发送带附件的邮件

MultiPartEmail email = new MultiPartEmail(); email.setDebug(true); email.setHostName("smtp.sina.com"); email.setAuthentication("发送邮件帐号", "邮箱登录密码"); email.setCharset("UTF-8"); try { email.setFrom("发送邮件帐号",

如何用unity3d实现发送带附件的邮件

以Gmail为例.点击屏幕的Capture按钮得到当前屏幕截图,点击Send按钮将之前的截图作为附件发送邮件. using UnityEngine; using System.Collections; using System; using System.Net; using System.Net.Mail; using System.Net.Security; using System.Security.Cryptography.X509Certificates; public class T