为我用python写一段接口测试代码,测试支付功能
时间: 2023-02-27 17:22:13 浏览: 124
好的,以下是一段用Python写的接口测试代码,用来测试支付功能:
```
import requests
# 接口地址
url = "https://www.example.com/pay"
# 请求头
headers = {
"Content-Type": "application/json"
}
# 请求体
data = {
"amount": 100,
"order_id": "abc123"
}
# 发送post请求
response = requests.post(url, headers=headers, json=data)
# 获取响应状态码
status_code = response.status_code
# 判断响应状态码是否为200
if status_code == 200:
print("支付成功")
else:
print("支付失败")
```
希望这段代码对您有所帮助!
阅读全文