接口自动化测试--requests模块

接口自动化测试--requests模块

安装

命令⾏通过pip⼯具进⾏安装,命令:

python 复制代码
pip install requests==2.31.0

介绍

requests 库是⼀个⾮常流⾏的HTTP客⼾端库,⽤于发送HTTP请求。 requests.get ⽅法⽤于发送⼀个HTTP get 请求到指定的URL

requests.get ⽅法返回⼀个 Response 对象,这个对象包含了服务器返回的所有信息。

Response 对象提供的属性/⽅法介绍:

params ⽤于在URL中传递查询参数(Query Parameters),通常⽤于 GET 请求,但也可以⽤于其他类型的请求。

• json ⽤于在请求体(Body)中传递 JSON 格式的数据,通常⽤于 POST 或 PUT 请求。

据,通常⽤于 POST 或 PUT 请求。

• data ⽤于在请求体(Body)中传递表单数据,通常⽤于 POST 或 PUT 请求。

相关推荐
把头塞进显示器2 天前
电商平台-测试报告
python·selenium·pytest
昔我往昔6 天前
pytest日志问题排查记录
python·pytest
黄昏恋慕黎明10 天前
博客论坛技术迭代
python·pytest
2601_9620782310 天前
Python接口自动化流程(pytest)
python·pytest·接口自动化·测试框架·断言
杨女士YRJ10 天前
python+pytest+01
python·pytest
2601_9620782311 天前
Python接口自动化框架:pytest
python·pytest·接口自动化·测试框架·restfulapi
2601_9620781911 天前
Appium+Python+pytest自动化测试框架详解
自动化测试·python·appium·pytest·移动应用
2601_9622845013 天前
安卓APP UI自动化测试:Python + UiAutomator2 + pytest + pytest-html
python·pytest·uiautomator2·ui自动化测试·安卓app
2601_9623008113 天前
基于pytest的接口自动化测试:使用requests模块的实战项目与接口关联方法详解
接口自动化测试·测试用例·pytest·接口关联·requests模块
2601_9623008113 天前
Python + Requests + Pytest + Excel + Allure:接口自动化测试项目实战
python·excel·pytest·allure·requests