Python + Requests 实现接口自动化

Python + Requests 实现接口自动化

第一步:

安装python,配置python环境变量,在cmd中输入python命令可以进入python会话框

Python + Requests 实现接口自动化

第二步:

安装pip包管理工具,使用python自带的easy_install.exe来安装

进入python安装目录下的Scripts目录,找到easy_install.exe

Python + Requests 实现接口自动化

执行如下命令,安装python包管理工具pip

Python + Requests 实现接口自动化

第三步:

执行如下命令在在python中安装Requests,使用pip安装模式

Python + Requests 实现接口自动化

第四步:

在python编辑器中导入Requests,导入成功表明Requests安装正确

Requests中常用的方法

1.基本的get请求

b = requests.get(url="http://120.76.222.26:8111/login?username=13554825492&password=123456")

2.带参数的get请求

r = requests.get(url="http://120.76.222.26:8111/login?",params={"username":"13554825492","password":"123456"})
3.输出get请求返回的状态码
Print(r.stutus_code)
4.输出get请求返回的数据
Print(r.text)
5.简单的post方法
p = requests.post(url="",data={"data1":"888"})
6.输出post方法的返回值,状态码
与get方法一致

 

 有兴趣的同学可以加群讨论 :489650589