예제 #1
0
    def test_04(self):
        """输入查询-案件编号全匹配"""

        try:
            self.homepage.mediator_login(users.user_bafg['username'],
                                         users.user_bafg['pwd'])
            judgepage = JudgePage(self.homepage)
            # 拿测试数据-查询案件id
            search_ctx = judgepage._get_case_id()
            judgepage.act_seacrh_input(search_ctx)
            result = judgepage.verfc_act_seacrh_input(search_ctx)
            self.assertEqual(result, True)
        except Exception as msg:
            print "EXCEPTION >> {}".format(msg)
            # class function name_class docstring
            docstr = getdoc(
                getattr(self,
                        getframeinfo(currentframe()).function))
            name = _funcname_docstring(self, docstr.decode('utf8'))
            # 截图
            self.homepage.save_screen_shot(name)
            raise
        finally:
            self.end = datetime.datetime.now()
            duration = (self.end - self.start).seconds
            print "###case duration: {}###".format(duration)
예제 #2
0
 def test_04(self):
     """输入查询-案件编号全匹配"""
     self.homepage.mediator_login(users.user_bafg['username'], users.user_bafg['pwd'])
     judgepage = JudgePage(self.homepage)
     # 拿测试数据-查询案件id
     search_ctx = judgepage._get_case_id()
     judgepage.act_seacrh_input(search_ctx)
     result = judgepage.verfc_act_seacrh_input(search_ctx)
     self.assertEqual(result, True)