标签: python python-requests httprequest pytest basic-authentication
我正在发出包含基本身份验证的HTTP GET请求(使用requests library)
typeof
如何测试请求中是否存在正确的用户名和密码?
答案 0 :(得分:1)
模拟请求(使用requests-mock),Base64编码用户名和密码,并在typeof键上声明(使用pytest)。例如:
requests.get("https://httpbin.org/get", auth=("fake_username", "fake_password"))