文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

移动端自动化测试框架搭建

2023-01-30 23:40

关注

搭建框架的几点思考:

  • 需要框架实现什么功能
  • 前期需要做数据与业务分离,方便维护
  • 测试用例集管理要方便,便于异常时重新Run单条用例
  • 用例设计需要尽可能简单,多提供公共方法

 

 

  1. 目前设计框架如下图:

  

  • CommonLibrary 用于存放公共库
  • TestCasesRepository 用于存放测试用例
  • TestData 用于存放与测试用例有关的测试数据文档
  • TestRun_xxx 是测试过程中生成的测试结果,内含测试报告和日志
  • AutoRunTest.py 用于从用例列表中读取需要执行的测试用例文件,及测试结束后测试报告的发送
  • testcases.txt 用于存放用例表

  2. 其中公共库中大致有Appium的操作、Excel档的操作、手机信息的配置、测试用例信息的收集、测试结果文件夹的生产 、测试报告的写入、邮件发送等公共方法

目录如下:

 

如Appiumserver大致如下设计:

#! /usr/bin/env python
#coding=utf-8
import os,time

def start_appiumServer(port11,port12,deviceuuid):
 
    os.system("cd C:\\Program Files (x86)\\Appium\\  && start node node_modules\\appium\\lib\\server\\main.js --address 127.0.0.1 --port "+port11+ " -bp "+port12+" -U "+deviceuuid)
    time.sleep(2)

def kill_appiumServer(port13):
    # 查找对应端口的pid
    cmd_find = 'netstat -aon | findstr %s' % port13
    print(cmd_find)

    result = os.popen(cmd_find)
    text = result.read()
    pid = text[-5:-1]

    # 执行被占用端口的pid
    cmd_kill = 'taskkill -f -pid %s' % pid
    print(cmd_kill)
    os.popen(cmd_kill)

if __name__ == '__main__':
    #start_appiumServer('4729','4728','BIBI5LEU6PRCDIIV')
    #start_appiumServer('4727','4724','75a2daf1')
    #time.sleep(10)
    kill_appiumServer(4729)
    kill_appiumServer(4727)

 

EmailUtils结构如下:

#! /usr/bin/env python
#coding=utf-8

import smtplib
from os.path import basename
from email.mime.application import MIMEApplication
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import COMMASPACE,formatdate
from datetime import datetime
import ResultFolder
from email.header import Header
import zipfile,os
import decode_pwd



def send_email(send_from,send_to,subject,text,files1,files2,server="smtp.163.com"):

    #assert(isinstance(send_to,list),"Send To email should be a list")

    msg = MIMEMultipart()
    msg['From'] = send_from
    msg['To'] = send_to
    msg['Date'] = formatdate(localtime = True)
    msg['Subject'] = Header(subject, 'utf-8')
    my_password = "7A68656E676A696E6731313238"
    my_pass = decode_pwd.decode_pwd(my_password)

    msg.attach(MIMEText(text,'html'))

    with open(files1,"rb") as f:
        part1 = MIMEApplication(f.read())
        part1["Content-Type"] = 'application/octet-stream'
        part1["Content-Disposition"] = 'attachment; filename="TestResult.html"'
        msg.attach(part1)
		
    with open(files2,"rb") as g:
        part2 = MIMEApplication(g.read())
        part2["Content-Type"] = 'application/octet-stream'
        part2["Content-Disposition"] = 'attachment; filename="Test.log"'
        msg.attach(part2)
    smtp = smtplib.SMTP_SSL(server,465)
    smtp.login(send_from,my_pass)
    smtp.sendmail(send_from,send_to,msg.as_string())
    smtp.quit()

def zip_report(startdir,file_news):
    print startdir
    z = zipfile.ZipFile(file_news,'w',zipfile.ZIP_DEFLATED)
    for dirpath, dirnames, filenames in os.walk(startdir):
        fpath = dirpath.replace(startdir, '')  # 这一句很重要,不replace的话,就从根目录开始复制
        fpath = fpath and fpath + os.sep or ''  # 这句话理解我也点郁闷,实现当前文件夹以及包含的所有文件的压缩
        for filename in filenames:
            z.write(os.path.join(dirpath, filename), fpath + filename)
    print ('压缩成功')
    z.close()


def send_report():
    send_f = "xxxxx@163.com"
    send_t = "xxxxxx@163.com"
    subject = "Software test Report_"+ str(datetime.today())

    files1 = ResultFolder.GetRunDirectory()+"\\TestResult.html"

    print "zip log is start"
    zipdir = ResultFolder.GetRunDirectory()+"\\"
    file2_news = zipdir + 'TestLog.zip'
    zip_report(zipdir,file2_news)
    files2 = ResultFolder.GetRunDirectory() + "\\TestLog.zip"


    with open(files1,'r') as f:
        text = f.read()

    send_email(send_f,send_t,subject,text,files1,files2)

if __name__=='__main__':
    send_report()

  

其他模块就不一一列举。

 

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯