摘要:
把下面的代码放在requests_module.py文件中 # coding: utf-8 import requests import logging from requests.exceptions import * class GetResponse(): def __init__(self, 阅读全文
摘要:
今天完善excel_module.py文件,上代码: # coding: utf-8 import xlrd class ReadExcel(): def __init__(self, file_name): self.data = xlrd.open_workbook(file_name) def 阅读全文
摘要:
基础知识已经准备的差不多了,今天开始我们就开始写我们的接口测试框架,框架结构已经说过了: 今天我们先完善需要的常量,也就是setting.py文件中的内容,代码如下: # coding: utf-8 import logging import os import time import inspec 阅读全文