python3接口测试(requests库)
Posted wanwanmom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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‘不是提示界面。‘
以上是关于python3接口测试(requests库)的主要内容,如果未能解决你的问题,请参考以下文章
Python3+Selenium3+Unittest+ddt+Requests 接口自动化测试框架