def test_singlefoot_rqspf_9_case(self):
     '''选择九场比赛,获取“最大场次限制8场”提示,测试流程'''
     ###点击进入竞彩足球选号页面###
     hp = HomePage_leyou(self.driver)
     pbcn = PaintBallChooseNumber_leyou(self.driver)
     sfcn = SingleFootChooseNumber_leyou(self.driver)
     cl = ConfirmLottery_leyou(self.driver)
     hp.open()
     hp.Moveable_float_close()
     hp.single_foot_link()  ##点击竞足
     pbcn.Play_f()  # 选择玩法
     pbcn.Play_rqspf()  # 选择让球胜平负
     aa = sfcn.jzdg_rqspf_choose(9)  # 选择比赛
     if aa == 1 or aa == 2:
         try:
             pbcn.know()
             pbcn.confirm_match()  # 确认所选场次
         except ElementNotVisibleException:
             print("当前赛事小于8场")
     if aa == 0:
         text = sfcn.Play_dgp_text()
         self.assertIn("单关配", text)
 def test_singlefoot_rqspf_8_case(self):
     '''选择8场比赛,流程测试'''
     ###点击进入竞彩足球选号页面###
     hp = HomePage_leyou(self.driver)
     pbcn = PaintBallChooseNumber_leyou(self.driver)
     sfcn = SingleFootChooseNumber_leyou(self.driver)
     sfcl = SingleFootConfirmLottery_leyou(self.driver)
     cl = ConfirmLottery_leyou(self.driver)
     hp.open()
     hp.Moveable_float_close()
     hp.single_foot_link()  ##点击竞足
     pbcn.Play_f()  # 选择玩法
     pbcn.Play_rqspf()  # 选择让球胜平负
     aa = sfcn.jzdg_rqspf_choose(8)  # 选择比赛
     if aa == 2:
         pbcn.confirm_match()  # 确认所选场次
         text1 = sfcl.lottery_times_text()  # 获取投注倍数文本
         self.assertIn("8注5倍 ", text1)
         cl.submit_order_to_station_owner_button()  # 提交订单给站主
     if aa == 0:
         text = sfcn.Play_dgp_text()
         self.assertIn("单关配", text)
 def test_singlefoot_rqspf_2_case(self):
     '''选择两场比赛进行投注,流程测试'''
     hp = HomePage_leyou(self.driver)
     pbcn = PaintBallChooseNumber_leyou(self.driver)
     pbc = PaintBallConfirm_leyou(self.driver)
     sfcn = SingleFootChooseNumber_leyou(self.driver)
     sfcl = SingleFootConfirmLottery_leyou(self.driver)
     cl = ConfirmLottery_leyou(self.driver)
     l = Login_leyou(self.driver)
     hp.open()
     hp.Moveable_float_close()
     hp.single_foot_link()  ###点击进入竞足单关选号页面###
     pbcn.Play_f()  # 选择玩法
     pbcn.Play_rqspf()  # 选择让球胜平负模式
     aa = sfcn.jzdg_rqspf_choose(2)  # 选择两场比赛
     if aa == 2:
         pbcn.confirm_match()  # 确认场次
         text1 = sfcl.lottery_times_text()  # 获取投注倍数文本
         self.assertIn("2注5倍 ", text1)
     if aa == 0:
         text = sfcn.Play_dgp_text()
         self.assertIn("单关配", text)
예제 #4
0
 def test_delete_all_event_case(self):
     """验证删除选择的全部赛事图标,流程测试"""
     hp = HomePage_leyou(self.driver)
     pbcn = PaintBallChooseNumber_leyou(self.driver)
     cl = ConfirmLottery_leyou(self.driver)
     pbc = PaintBallConfirm_leyou(self.driver)
     hl = Login_leyou(self.driver)
     hp.open()
     ######判断是否出现浮层弹框,如果出现浮层点击X,然后执行下一步操作
     hp.Moveable_float_close()
     hp.paintball_link()  ##点击竞彩足球
     pbcn.Play_f()  ###点击玩法
     pbcn.Play_rqspf()  ##点击让球胜平负
     aa = pbcn.rqspf_choose(2)  ###随机点击2场比赛
     if aa > 0:
         pbcn.confirm_match()  ###点击确认赛事
         pbc.Pf_del_icon()  #点击删除图标
         cl.confirm_delete_button()  #点击确认删除按钮
         pbcn.rqspf_choose(4)  #选择4场比赛
         pbcn.confirm_match()  ###点击确认赛事
         text = pbc.Pf_pass_text()  # 获取过关方式文本
         self.assertIn("4串1", text)
 def test_input_throw_times_case(self):
     '''输入投注3倍测试流程'''
     hp = HomePage_leyou(self.driver)
     pbcn = PaintBallChooseNumber_leyou(self.driver)
     sfcn = SingleFootChooseNumber_leyou(self.driver)
     sfcl = SingleFootConfirmLottery_leyou(self.driver)
     cl = ConfirmLottery_leyou(self.driver)
     pbc = PaintBallConfirm_leyou(self.driver)
     hp.open()
     hp.Moveable_float_close()
     hp.single_foot_link()  ##点击竞足
     pbcn.Play_f()  # 选择玩法
     pbcn.Play_rqspf()  # 选择让球胜平负
     aa = sfcn.jzdg_rqspf_choose(1)  # 选择比赛
     if aa > 0:
         pbcn.confirm_match()  # 点击确认赛事
         pbc.Times_input_click()  # 点击投注倍数输入框
         pbc.Times_input(3)  # 输入投注3倍
         text = sfcl.lottery_times_text()  # 获取投注倍数文本
         self.assertIn('1注3倍', text)
     if aa == 0:
         text = sfcn.Play_dgp_text()
         self.assertIn("单关配", text)
 def test_throw_sub_btn_case(self):
     '''点击投注倍数的-按钮流程测试'''
     hp = HomePage_leyou(self.driver)
     pbcn = PaintBallChooseNumber_leyou(self.driver)
     sfcn = SingleFootChooseNumber_leyou(self.driver)
     sfcl = SingleFootConfirmLottery_leyou(self.driver)
     cl = ConfirmLottery_leyou(self.driver)
     pbc = PaintBallConfirm_leyou(self.driver)
     l = Login_leyou(self.driver)
     hp.open()
     hp.Moveable_float_close()
     hp.single_foot_link()  ##点击竞足
     pbcn.Play_f()  # 选择玩法
     pbcn.Play_rqspf()  # 选择让球胜平负
     aa = sfcn.jzdg_rqspf_choose(1)  # 选择比赛
     if aa > 0:
         pbcn.confirm_match()  # 点击确认赛事
         pbc.Btn_less()  # 点击-按钮
         text = sfcl.lottery_times_text()  # 获取投注倍数文本
         self.assertIn('1注4倍', text)
     if aa == 0:
         text = sfcn.Play_dgp_text()
         self.assertIn("单关配", text)