python+appium+unittest 启动一次app,执行多条test
Posted 呆呆蒙蒙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+appium+unittest 启动一次app,执行多条test相关的知识,希望对你有一定的参考价值。
参考地址 https://blog.csdn.net/YZF_DD/article/details/85118078
执行用例过程中只启动一次app,减少代码运行时间,利于代码封装
@classmethod
setUpClass
tearDownClass
1 class TestCase(unittest.TestCase): 2 @classmethod 3 def setUpClass(self): 4 print(‘开始测试‘) 5 self.driver = DriverApp().driver() 6 7 # 滑动手机屏幕 8 def test_001(self): 9 for i in range(2): 10 GestureMainpulation().swipe_left(self.driver) 11 12 # 点击立即体验 13 def test_002(self): 14 AppActions().a(self.driver) 15 16 @classmethod 17 def tearDownClass(self): 18 print("结束测试")
以上是关于python+appium+unittest 启动一次app,执行多条test的主要内容,如果未能解决你的问题,请参考以下文章
Appium基于python unittest自动化测试并生成html测试报告
python-appium520-2引入unittest,编写自动化用例