Python UI主动化 —— pytest常用运行参数解析(1),2024最新软件测试框架体
首先来看什么参数都没加的运行情况class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main()
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items
test_page.py FF.
================================== FAILURES ===================================
-v 用于表现每个测试函数的实行结果
用于打印表现每条用例的实行情况
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-v’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 – D:\Users\72036454\AppData\Local\Programs\Python\Python38\python.exe
cachedir: .pytest_cache
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collecting … collected 3 items
test_page.py::TestClass::test_zne FAILED [ 33%]
test_page.py::TestClass::test_two FAILED [ 66%]
test_page.py::TestClass::test_a PASSED
================================== FAILURES ===================================
现在我也找了很多测试的朋友,做了一个分享技术的交流群,共享了很多我们网络的技术文档和视频教程。
如果你不想再体验自学时找不到资源,没人解答问题,坚持几天便放弃的感受
可以加入我们一起交流。而且另有很多在主动化,性能,安全,测试开发等等方面有一定建树的技术大牛
分享他们的经验,还会分享很多直播讲座和技术沙龙
可以免费学习!划重点!开源的!!!
qq群号:110685036
https://i-blog.csdnimg.cn/blog_migrate/a3bb140d7435dea82464fc9d60f01dfa.png
-q 只表现整体测试结果
简化测试整体结果。F:代表测试失败、.:代表测试通过
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-q’])
FF.
================================== FAILURES ===================================
-s 用于表现测试函数中print()函数输出
表现测试用例中 print() 中的值
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-s’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items
test_page.py 1
F2
F3
.
================================== FAILURES ===================================
-x 在第一个错误或失败的测试中立刻退出
第一条用例实行失败,立刻退出不在往下实行用例
import pytest
class TestClass():
def test_zne(self):
print(1)
assert 1==2
def test_two(self):
print(2)
assert 1==2
def test_a(self):
print(3)
assert 1==1
if name == ‘main’:
pytest.main([‘-x’,‘-s’])
============================= test session starts =============================
platform win32 – Python 3.8.10, pytest-6.2.5, py-1.10.0, pluggy-1.0.0
rootdir: D:\Users\72036454\Desktop\pythonProject\Base
plugins: allure-pytest-2.9.45
collected 3 items
test_page.py 1
F
================================== FAILURES ===================================
-m 只运行带有装饰器配置的测试用例
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数软件测试工程师,想要提升技能,往往是自己摸索发展大概是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易遇到天花板技术停滞不前!
因此网络整理了一份《2024年软件测试全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
https://i-blog.csdnimg.cn/blog_migrate/34a09061bdabe4b99f61ef5fd234a3ce.png
https://i-blog.csdnimg.cn/blog_migrate/46e3c9517e5fde00a18574b83bdac91a.png
https://i-blog.csdnimg.cn/blog_migrate/426edff7e64d244c2ebeaa95cad86d1c.png
https://i-blog.csdnimg.cn/blog_migrate/a1165a3eff0e47a0a71834d9d04c2175.png
https://i-blog.csdnimg.cn/blog_migrate/58c31afbe63be7e022123e64ec68f1e5.png
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上软件测试开发知识点,真正体系化!
由于文件比力大,这里只是将部分目次大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码课本、实战项目、讲解视频,而且后续会连续更新
如果你以为这些内容对你有帮助,可以添加V获取:vip1024b (备注软件测试)
https://i-blog.csdnimg.cn/blog_migrate/64f8803831fd3702822098ac3ab78747.jpeg
一个人可以走的很快,但一群人才气走的更远。不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎扫码加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、口试辅导),让我们一起学习发展!
解视频,而且后续会连续更新**
如果你以为这些内容对你有帮助,可以添加V获取:vip1024b (备注软件测试)
[外链图片转存中…(img-5pMrexDc-1712694121464)]
一个人可以走的很快,但一群人才气走的更远。不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎扫码加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、口试辅导),让我们一起学习发展!
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页:
[1]