上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页

2019年9月21日

pytest--fixure前置执行一个函数

摘要: pytest_twofixture.py::test_soso PASSED [ 50%]case3 pytest_twofixture.py::test_cart 登陆PASSED [100%]case4 案例2 pytest_twofixture.py::test_soso PASSED [ 5 阅读全文

posted @ 2019-09-21 23:06 barton123 阅读(406) 评论(0) 推荐(0) 编辑

pytest--fixture---自动应用

摘要: 打开浏览器登陆PASSED [ 50%]case3 pytest_twofixture.py::test_cart 打开浏览器登陆PASSED [100%]case4 阅读全文

posted @ 2019-09-21 23:00 barton123 阅读(229) 评论(0) 推荐(0) 编辑

pytest--两个fixture时,灵活运用

摘要: pytest_twofixture.py::test_soso 打开浏览器PASSED [ 50%]case3 pytest_twofixture.py::test_cart 打开浏览器登陆PASSED [100%]case4 阅读全文

posted @ 2019-09-21 22:58 barton123 阅读(179) 评论(0) 推荐(0) 编辑

pytest--fixture之参数化

摘要: 场景:测试用例执行时,有的用例需要登陆才能执行,有些用例 不需要登陆。setup和teardown无法满足。fixture可以。默认 scope(范围)function • 步骤: 1. 导入pytest 2. 在登陆的函数上面加@pytest.fixture() 3. 在要使用的测试方法中传入(登 阅读全文

posted @ 2019-09-21 22:45 barton123 阅读(428) 评论(0) 推荐(0) 编辑

pytest_fixture--scope="session"

摘要: pytest_fixture.py::test_cart 输入用户名密码登陆! configtestPASSED [ 33%]用例1,登陆后执行添加购物车功能操作 pytest_fixture.py::test_search PASSED [ 66%]用例2,不登陆查询功能操作 pytest_fix 阅读全文

posted @ 2019-09-21 22:37 barton123 阅读(1291) 评论(0) 推荐(0) 编辑

pytest_fixture-----conftest共享数据及不同层次共享

摘要: 场景:你与其他测试工程师合作一起开发时,公共的模块要在不同文件中,要 在大家都访问到的地方。 解决:使用conftest.py 这个文件进行数据共享,并且他可以放在不同位置起 着不同的范围共享作用。 前提:conftest文件名是不能换的,放在项目下是全局的数据共享的地方,全 局的配置和前期工作都可 阅读全文

posted @ 2019-09-21 22:31 barton123 阅读(532) 评论(0) 推荐(0) 编辑

pytest----fixture(1)--使用fixture执行配置及销毁逻辑

摘要: 1使用fixture执行配 置及销毁;非常灵活 使用。 2数据共享:在 conftest.py配置里写方 法可以实现数据共享, 不需要import导入。可 以跨文件共享 3scope的层次及神 奇的yield组合相当 于各种setup 和teardown 使用fixture执行配置及销毁逻辑 场景: 阅读全文

posted @ 2019-09-21 22:22 barton123 阅读(458) 评论(0) 推荐(0) 编辑

pytest-文件名类名方法名执行部分用例

摘要: pytest test_class_01.py 执行文件名 pytest -v -s test_class_01.py 执行文件名 pytest -v test_class_01.py::TestClass 执行类名 pytest -v test_class_01.py::TestClass::te 阅读全文

posted @ 2019-09-21 17:51 barton123 阅读(628) 评论(0) 推荐(0) 编辑

pytest_按标记执行

摘要: pytest -s test_mark.py -m 'not ios' 执行标记不等于ios的 pytest -s test_mark.py -m ios 只执行标记==ios的 pytest -s test_mark.py -m=ios 只执行标记==ios的 阅读全文

posted @ 2019-09-21 17:46 barton123 阅读(280) 评论(0) 推荐(0) 编辑

统计列表中出现的个数,统计列表中元素出现的个数

摘要: 今天竟然犯傻了,竟然理解错了 {'a': 3, 1: 5, 2: 2, 3: 2, 'c': 1, 4: 1, 6: 1} 阅读全文

posted @ 2019-09-21 16:38 barton123 阅读(3588) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页

导航