当前位置:网站首页>pytest接口自动化测试框架 | 执行失败跳转pdb
pytest接口自动化测试框架 | 执行失败跳转pdb
2022-08-01 07:12:00 【COCOgsta】
视频来源:B站《冒死上传!pytest接口自动化测试框架(基础理论到项目实战及二次开发)教学视频【软件测试】》
一边学习一边整理老师的课程内容及试验笔记,并与大家分享,侵权即删,谢谢支持!
附上汇总贴:pytest接口自动化测试框架 | 汇总_COCOgsta的博客-CSDN博客
pdb是python标准库的调试模块。在Pytest中,可以直接使用--pdb参数在测试失败时开始调试:
pytest --pdb # 每次遇到失败都跳转到PDB
pytest -x --pdb # 第一次遇到失败就跳转到PDB,结束测试执行
pytest --pdb --maxfail=3# 只有前三次失败跳转到PDB
pdb提示符出现后,便可以使用pdb的交互调试功能,查看错误时,有以下常用命令:
p/print expr: 输出变量expr的值
pp expr: 美化输出expr的值
l/list: 列出错误并显示错误之前和之后的5行代码
l/list begin, end: 列出错误,并显示指定行号之间的代码
a/args: 移动到堆栈的上一层
d/down: 移动到堆栈的下一层
q/quit: 退出当前调试会话(也会退出测试会话)
在控制台与pdb进行交互
边栏推荐
- Golang:go连接和使用mysql
- Does flinkcdc have any solution for mysql's date field type conversion?
- sum of special numbers
- Dell PowerEdge Server R450 RAID Configuration Steps
- 选择排序—直接选择排序和堆排序
- How to use Photoshop to composite star trail photos, post-processing method of night sky star trail photos
- mysql中添加字段的相关问题
- 响应式织梦模板园林花卉类网站
- 特殊的日子,值得纪念
- 仿牛客网讨论社区项目—项目总结及项目常见面试题
猜你喜欢
Dell PowerEdge Server R450 RAID Configuration Steps
Dart exception details
datagrip 报错 “The specified database userpassword combination is rejected...”的解决方法
图片无损压缩软件哪个好用:试试完全免费的JPG-C 图片批量修整压缩减肥工具吧 | 最新jpg批量修整工具下载
支付宝如何生成及配置公钥证书
Vim三种模式
MVVM project development (commodity management system 1)
NIO programming
Golang:go开启web服务
电磁兼容简明教程(6)测试项目
随机推荐
LeetCode 0149. Maximum number of points on a line
Summary of test points about app updates in different ways
first unique character in characters
JVM:运行时数据区-PC寄存器(程序计数器)
Golang:go静态文件处理
Zero-code website development tool: WordPress
支付宝如何生成及配置公钥证书
对于升级go1.18的goland问题
Leetcode第 304 场周赛
POJ2031空间站题解
Windows taskbar icon abnormal solution
LeetCode 0150. Reverse Polish Expression Evaluation
The Bean's life cycle
Golang: go open web service
金山打字通 官网 下载
点餐系统数据库设计--SQL Server
Create, modify and delete tables
Data organization -- singly linked list of the linear table
问下 mysql向pg同步多个表的话 有什么好的方案吗?
LeetCode每日一题(309. Best Time to Buy and Sell Stock with Cooldown)