摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/11/23 13:15 # @Author : zhouyang # @File : TestCase.py import unittest from selenium import webdriver from selenium.webdriver.support.wai... 阅读全文
posted @ 2019-05-28 17:13 不上进的小猫 阅读(624) 评论(0) 推荐(0) 编辑
摘要: #跳过测试skip和预期失败 import unittest #@unittest.skip #直接跳过测试 class Test1(unittest.TestCase): @classmethod def setUpClass(cls): print('在类运行前执行') @classmethod def tearDownClass(cls... 阅读全文
posted @ 2019-05-28 11:54 不上进的小猫 阅读(790) 评论(0) 推荐(0) 编辑