硒在使用单元测试时如何运行多功能?

时间:2019-08-26 08:52:12

标签: python selenium selenium-webdriver python-unittest

这是我的代码

class M(unittest.TestCase):
    @classmethod
    def setUpClass(cls):
        # init webdriver

    def test_1(self):
        # login the web

    def test_2(self):
        # check the dashboard after login

    @classmethod
    def tearDownClass(cls):
        # quit driver

当我运行代码时,驱动程序在函数test_1完成运行后退出,如何在test_2之前运行tearDownClass

0 个答案:

没有答案