当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 15

minxia/seautotest-public
暂停

forked from 寻鱼的猫/seautotest-public
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
start.py 798 Bytes
一键复制 编辑 原始数据 按行查看 历史
寻鱼的猫 提交于 2020-01-21 16:20 . #### 2020年1月21日更新
# -*- coding: UTF-8 -*- 
from control.autotest import Autotest
import sys
from datetime import datetime
import os
start_se_time = datetime.now()
# 将工程根目录加入到python搜索路径中
sys.path.append('..')
# 兼容后期格式,是接口自动化还是web自动化app自动化,数据库,小程序 h5等自动化测试,以接口为主
desired_caps = {'genre': 'api'}
autotest = Autotest(desired_caps)
# 执行测试
autotest.play()
# dd报警
autotest.alarm()
# 生成allure测试报告
# 参考资料 生成xml报告形式:https://llg.cubic.org/docs/junit/
try:
os.system('allure serve control/junit')
except BaseException:
print(u'请安装allure,qq群:234922431')
# 发送测试报告到邮箱
end_se_time = datetime.now()
print(end_se_time - start_se_time)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/minxia/seautotet-public.git
git@gitee.com:minxia/seautotet-public.git
minxia
seautotet-public
seautotest-public
master

搜索帮助