python3做接口测试_python3接口测试(requests库)

一、一般概念

1.导入第三方库

import requests

2.发送get请求

#userURL为客户端访问的URL地址

myResponse = requests.get(userURL)

3.查看返回结果

#myResponse.header包含内容:{‘Server‘: ‘nginx/1.10.1‘, ‘Date‘: ‘Sat, 18 Aug 2018 02:57:28 GMT‘, ‘Content-Type‘: ‘text/html; charset=GBK‘, ‘X-Powered-By‘: ‘PHP/7.0.10‘, ‘Content-Encoding‘: ‘gzip‘, ‘Age‘: ‘0‘, ‘Transfer-Encoding‘: ‘chunked‘, ‘Connection‘: ‘keep-alive‘, ‘Via‘: ‘http/1.1 swg.com ("SKG-UCSG")‘}

4.requests函数有几个典型方法

requests.request()

requests.get()

requests.post()

requests.put()

requests.delete()

requests.head()

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

二、应用

要求:

1.请求的URL是https,可能会报SSL认证错误;

2.对请求头(request head)中的元素赋值,例如content-type。

3.通过代理(proxies)发送请求。

import requests

#访问https时会报证书错误((Caused by SSLError(SSLCertVerificationError(1, ‘[SSL: CERTIFICATE_VERIFY_FAILED] ),可以在发送请求时不验证。

#屏蔽waring信息

#requests.packages.urllib3.disable_warnings()

#一般的get请求方法

#myrequest = requests.get(r"https://www.baidu.com",verify=False)

#print (myrequest.headers)

#准备请求数据

myUrl = r"https://www.cnblogs.com/mpp0905/p/9264465.html"

myHeader = {"content-type":"image/jpeg"}

#代理

myProxies = {‘http‘ : ‘http://url:port‘}

#发送请求

myRequest = requests.request("GET",myUrl,headers=myHeader,proxies=myProxy,verify=False)

#当返回页面中有中文时,需要对返回页面进行编码

myRequest.encoding = ‘utf8‘

#判断返回页面

print (myRequest.status_code)

assert u"页面中应出现的元素" in (myRequest.text),u‘不是提示界面。‘

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值