测试HTTP请求中的用户名和密码?

时间:2019-08-29 13:56:22

标签: python python-requests httprequest pytest basic-authentication

我正在发出包含基本身份验证的HTTP GET请求(使用requests library

typeof

如何测试请求中是否存在正确的用户名和密码?

1 个答案:

答案 0 :(得分:1)

模拟请求(使用requests-mock),Base64编码用户名和密码,并在typeof键上声明(使用pytest)。例如:

requests.get("https://httpbin.org/get", auth=("fake_username", "fake_password"))