python 学习笔记(接口自动化框架 V2.0 )
这个是根据上次框架版本进行的优化
用 python 获取 excel 文件中测试用例数据
通过 requets 测试接口、并使用正则表达式验证响应信息内容
生成 xml 文件测试报告
版本更新内容:
1. 整理了 CreateTest.test_main() 流程逻辑
2. 优化了 testcase.xls 文件格式
3. 添加了生成 XML 文件测试报告
代码如下:
1 #!/usr/bin/env python
2 # -*- coding: utf_8 -*-
3 # 获取测试用例文件 excel
4
5 import xlrd
6 import json
7
8
9 class CreateExcel:
10 def __init__ (self):
11 pass
12
13 @classmethod
14 def open_excel(cls):