IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> pytest的方式运行完整项目实现接口自动化 -> 正文阅读

[Python知识库]pytest的方式运行完整项目实现接口自动化

在这里插入图片描述
首先需要使用python第三方模块

pip install pytest -i https://pypi.tuna.tsinghua.edu.cn/simple

安装之后cmd黑窗口输入pip list查看模块版本信息
打开pycharm软件配置环境
在这里插入图片描述
配置环境
在这里插入图片描述
我们newproject,然后创建文件夹,文件如图
在这里插入图片描述
在test_fw里面

from test_case.test_fw_login import *
from test_case.test_push_file import *
from test_case.test_edit_userinfo import *
class Test_Fw:
    #方维页面
    def setup_class(self):
        #pytest的前置操作 ---在所有的用例运行前必定会先运行
        self.s = test_fw_login()
        print('前置操作')
    def test_edit(self):
        #编辑个人资料
        test_edit_userinfo(self.s)

    def test_chongzhi(self):
        #充值上传图片
        test_push_file(self.s)

在test_fw_login

import requests
def test_fw_login():
    url='http://106.52.182.140/fanwe/index.php?ctl=user&act=dologin&fhash=xGhwpLIiqHoEAAvNeWFnikycDaFmbPBKfBSxMoNkNXJPdoRBSO'
    data={
        'email'	:'iop123',
        'user_pwd'	:'V2hrYmRzaXdhRG1ibFpaRnB5RXJKTGFoUmlvSFprWVlSdVZncEJDTm9yaW1QR0tNVnklMjV1NjVCOSUyNXU3RUY0aW9wMTIzJTI1dThGNkYlMjV1NEVGNg==',
        'ajax':	'1'
    }
    header={
        'Host': '106.52.182.140',
        'Origin': 'http://106.52.182.140',
        'Referer': 'http://106.52.182.140/fanwe/index.php?ctl=user&act=login'

    }
    s=requests.session()
    rq=s.post(url=url,data=data,headers=header)
    rsp=rq.content.decode('unicode_escape')
    print()
    print(rsp)
    return s

在test_edit_userinfo

import  requests
from  test_case.test_fw_login import test_fw_login
def test_edit_userinfo(s=None):
    if s==None:
        s=test_fw_login()
    edit_url='http://106.52.182.140/fanwe/member.php?ctl=uc_account&act=save'
    data_edit={
        'avatar_file': '',
        'graduation': '本科',
        'university': 'wuhan',
        'marriage': '已婚',
        'province_id': '2',
        'city_id': 52,
        'address': 'lifengfanclub',
        'phone': '17674128890-17674128890',
        'commit': '保存更改'
    }
    edit_header={
        'Referer': 'http://106.52.182.140/fanwe/member.php?ctl=uc_account'
    }
    rq=s.post(url=edit_url,data=data_edit,headers=edit_header)
    print()
    print('编辑个人资料接口的cookie{}'.format(s.cookies))
    print(rq.text[315:345])

在test_push_file

# D:\softTest\Python\work\filework\work
# C:\fakepath\lff1.png
import requests
from test_case.test_fw_login import test_fw_login

def test_push_file(s=None):
    if s == None:
        s = test_fw_login() #当没有给s传值的时候就自己给自己传值 --登录后的会话
    else:
        pass
    # 上传文件
    # 接口地址
    file_url = 'http://106.52.182.140/fanwe/file.php'
    # 请求数据
    file_data = {
        'a': 'do_upload',
        'localUrl': r'C:\fakepath\lff1.png',
        'm': 'File',
        'upload_type': '0'
    }
    # 文件信息
    path = r'D:\softTest\Python\work\filework\work\lff1.png'
    file = {
        'imgFile': ('lff1.png', open(path, 'rb'), 'image/png')  # tup.png --文件名称,open(path,'rb')--处理文件的方式
        # 'image/png' --文件类型
    }
    # 上传文件请求头
    file_header = {
        'Referer': 'http://106.52.182.140/fanwe/member.php?ctl=uc_money&act=incharge'
    }
    # 发起上传文件请求
    rq = s.post(url=file_url, data=file_data, files=file, headers=file_header)
    print()
    print('上传文件接口的cookie{}'.format(s.cookies))
    print(rq.text)  # 获取接口返回结果
  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 23:20:55  更:2022-04-01 23:21:51 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:32:57-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码