python接口自动化测试九:重定向相关
2021-07-11 03:07
阅读:423
allow_redirects=False 不重定向
# 获取重定向后的地址
loc = r.headers
# 相对地址
host = ‘https://i.cnblogs.com/‘
url = host+‘EditPosts.aspx?opt=1‘
loc = r.headers[‘Location‘]
url1 = host+loc # 拼接出重定向后的地址
# 追踪重定向过程
his = r.history
print(type(his))
print(his)
# 追踪第二个请求内容
r2 = his[1]
print(r2)
# 通过Response对象,来获取返回内容
print(r2.url)
print(r2.status_code)
print(r2.headers)
print(r2.test)
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python接口自动化测试九:重定向相关
文章链接:http://soscw.com/index.php/essay/103525.html
文章标题:python接口自动化测试九:重定向相关
文章链接:http://soscw.com/index.php/essay/103525.html
评论
亲,登录后才可以留言!