接口测试Python小demo
时间: 2023-10-07 08:10:00 浏览: 110
Python 接口测试
以下是一个简单的接口测试Python小demo,使用requests库发送HTTP请求,测试接口返回结果是否正确:
```python
import requests
# 发送GET请求
response requests.get('http://httpbin.org/get')
print(response.json())
# 发送POST请求
response = requests.post('http://httpbin.org/post', data={'key': 'value'})
print(response.json())
#送PUT请求
response = requests.put('http://httpbin.org/put', data={'key': 'value'})
print(response.json())
# 发送DELETE请求
response = requests.delete('http://httpbin.org/delete')
print(response.json())
```
该小demo发送了4种常见的HTTP请求(GET、POST、PUT、DELETE),并使用json()方法解析接口返回的JSON数据。可以根据需要修改请求的URL、参数、请求头等信息,进行接口测试。
阅读全文