pytest-http

Fixture "http" for http requests


Keywords
pytest, py, test, http, requests
License
MIT
Install
pip install pytest-http==0.1

Documentation

pytest-http

Pytest发送HTTP请求


如何使用

  1. 安装 pytest-http

使用pip从github安装

pip install git+https://github.com/hanzhichao/pytest-http
  1. 使用fixture函数: http
def test_a(http):  # 所有数据
    res = http.get('https://www.baidu.com')
    print(res.text)