Appium自动化框架从0到1之 测试用例封装

我们直接封装测试用例的 setU 和teardown 模块
以后每次执行测试用例,直接调用该方法就可以了

myunit.py

# -*- coding: utf-8 -*-
"""
@ auth : carl_DJ
@ time : 2020-7-10
"""

import unittest
import logging
import time
from public.desired_caps import appium_desired

class  StartEnd(unittest.TestCase):
    '''
    测试用例的执行开始、结束的封装
    '''
    def  setUp(self):
        '''
        测试开始,启动
        :return:
        '''
        logging.info("======setUp========")
        self.driver = appium_desired()

    def tearDown(self):
        '''
        测试结束,关闭
        :return:
        '''
        logging.info('=========tearDown============')
        time.sleep(3)
        self.driver.close_app()
        

猜你喜欢

转载自blog.csdn.net/wuyoudeyuer/article/details/107245992