requests接口自动化2-url里不带参数的get请求

最常用的是get,post请求,然后是put,delete,其他方法很少用

1、 get请求几种方式

1.1、url里不带参数的get请求

接口请求fiddler返回内容:

requests接口自动化2-url里不带参数的get请求

import requests
import json
#1、不带参数的get请求
response1 = requests.get("http://www.luckyframe.cn/login")
print("响应码:"+str(response1.status_code))
print("响应url:"+response1.url)
print(response1.headers)
print("响应text:"+response1.text)

 运行结果:

D:\Python37\python.exe E:/PycharmProjects/home_UI/apistudy/logintest.py
响应码:200
响应url:http://www.luckyframe.cn/login
{'Set-Cookie': 'JSESSIONID=d2811082-1f44-4f7a-8f46-ad35e5469310; Path=/; HttpOnly', 'Content-Type': 'text/html;charset=UTF-8', 'Content-Language': 'zh-CN', 'Transfer-Encoding': 'chunked', 'Date': 'Sat, 13 Jun 2020 14:40:11 GMT'}
响应text:<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> <title>LuckyFrame开源测试平台</title>
<meta name="keywords" content="开源测试工具,自动化测试平台,开源测试平台,自动化测试框架,luckyframe">…..

  

上一篇:Python函数加工厂-装饰器


下一篇:Bzoj 2120: 数颜色 && 2453: 维护队列 莫队,分块,bitset