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知识库 -> 实验四:Robotframework框架实验 -> 正文阅读

[Python知识库]实验四:Robotframework框架实验

安装Robotframework框架,对实验二中开发的接口进行自动化测试,要求出现个人信息,提交源代码,以及过程与结果截图

1、安装robotframework环境

(由于老师要求截图要带个人信息,所以红色的小方块是我打的马赛克,虽然看上去也没什么用)
我是直接在pycharm的Terminal里面安装的,不是打开了电脑的cmd,都一样,能装成功能用就行,报错的话就要自己去找问题哦~

(1)安装robotframework

pip install robotframework

在这里插入图片描述
(2)安装 wxPython-4.0.3 (ride可视化界面必备的python图形化支持)

pip install wxPython

在这里插入图片描述
(3)安装ride用于编写rf脚本 robotframework-ride

pip install robotframework-ride

在这里插入图片描述
在这里插入图片描述
(4)安装测试UI 自动化支持 robotframework-SeleniumLibrary

pip install robotframework-SeleniumLibrary

(5)安装测试接口支持 robotframework-httplibrary 和robotframework-requests

pip install robotframework-httplibrary
pip install robotframework-requests

(6)安装 robot framework数据库访问插件

pip install PyMySQL

2、点击桌面的ride,如果打不开,可能是你的Python版本3.8,因为我也打不开,但是有别的办法可以打开,需要自己上网找。我是个笨人,我直接重装了Python3.7版本,然后把原来的代码复制过去了,o(╥﹏╥)o

3、在ride界面里面找到你Pycharm项目的位置,我的项目在D盘
在这里插入图片描述
4、一直找到你项目名字出现
在这里插入图片描述
5、导入库
在这里插入图片描述
6、测试用例
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
7、测试
在这里插入图片描述
8、报告(报错的时候看很有帮助)
在这里插入图片描述
9、记得去数据库刷新看看数据变化,当然,查看数据没啥

10、Pycharm的代码,可以看到多出了一个文件夹和.robot文件
在这里插入图片描述
仅作参考。
我也是找到别人的博客学习的,只是忘记了那篇博客是哪一篇。

*** Settings ***
Library           RequestsLibrary

*** Test Cases ***
test_add_params_null
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary
    ${resp}    Post on Session    cbb    /add    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    10001    ${resp.json().get("code")}

test_add_success
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary    name=测试添加数据    age=430
    ${resp}    Post on Session    cbb    /add    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    200    ${resp.json().get("code")}

test_delete_id_null
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary
    ${resp}    Post on Session    cbb    /delete    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    10001    ${resp.json().get("code")}

test_delete_success
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary    id=30
    ${resp}    Post on Session    cbb    /delete    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    200    ${resp.json().get("code")}

test_update_params_null
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary
    ${resp}    Post on Session    cbb    /update    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    10001    ${resp.json().get("code")}

test_update_success
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary    id=30    name=测试修改数据    age=430
    ${resp}    Post on Session    cbb    /update    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    200    ${resp.json().get("code")}

test_query_id_null
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary
    ${resp}    Post on Session    cbb    /query    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    10001    ${resp.json().get("code")}

test_query_success
    &{header}=    Create Dictionary    Content-type=application/x-www-form-urlencoded
    Create Session    cbb    http://127.0.0.1:5000    headers=${header}
    &{data}=    Create Dictionary    id=1
    ${resp}    Post on Session    cbb    /query    data=${data}
    log    ${resp.json().get("code")}
    log    ${resp.json().get("message")}
    Should Be Equal As Numbers    200    ${resp.json().get("code")}

结语:

你知道,有些鸟是注定不会关在牢笼里的,它的每一片羽毛都闪耀着自由的光辉。——《肖申克的救赎》
在这里插入图片描述

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2022-05-14 09:54:14  更:2022-05-14 09:55:01 
 
开发: 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 13:58:59-

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