zoukankan      html  css  js  c++  java
  • 随笔记:2.4接口测试-接口测试requests上传文件操作

    思路:

    1. 接口请求   requests.post(url,files=file)

    2.url,上传文件的接口地址

    3.files,上传文件的信息

    url = 'https://www.baidu.com/user/postpic'

    files = {

      --fileFieID是接口的参数,type也是接口参数,根据项目的参数来定义

      "fileField":(‘文件名称’,open('文件地址',‘rb’,‘image/jpg’),

      'type':'1'

    }

    res = requests.post(url,files=files,verify=False).json()

  • 相关阅读:
    设计模式
    C++下char/string跟int型转换比较
    function
    流程控制
    运算符
    type
    language
    phpbasic
    html标签集合
    课题六
  • 原文地址:https://www.cnblogs.com/wdlrup/p/13698158.html
Copyright © 2011-2022 走看看