def test_intelligently_chase_ravise_times_sub_confirm_revise_case(self): '''【修改方案】起始倍数,点击-,点击【确定】,【提交】提交订单''' hp = HomePage_leyou(self.driver) hp.open() l = Login_leyou(self.driver) efcn = ElevenFiveChooseNumber_leyou(self.driver) ulcn = UnionLottoChooseNumber_leyou(self.driver) efcl = EleChooseFiveConfirmLottery_leyou(self.driver) cl = ConfirmLottery_leyou(self.driver) ssc_cl = CQSSCConfirmLottery_leyou(self.driver) sos = SubmitOrderSuccess_leyou(self.driver) hp.Moveable_float_close() # 点击关闭浮窗 hp.My_lottery_ticket() # 点击我的彩票 l.login_leyou() # 点击登录 hp.homepage_link() # 点击首页 hp.cqssc_link() # 点击重庆时时彩链接 ssc_cn = CQSSC_ChooseNumber_leyou(self.driver) ssc_cn.play_mode() # 选择模式 ssc_cn.five_star() # 选择五星 ssc_cn.wanwei_random(1) ssc_cn.qianwei_random(1) ssc_cn.baiwei_random(1) self.driver.execute_script("window.scroll(0,300)") ssc_cn.shiwei_random(1) ssc_cn.gewei_random(1) efcn.confirm_number_button() # 确认选号 ssc_cl.intelligently_chase_button() # 点击智能追号 ssc_cl.revise_button() #点击修改方案 ssc_cl.revise_times_input(3) ssc_cl.revise_confirm() # 点击确认修改 text = ssc_cl.totalIssue_text() ssc_cl.revise_button() # 点击修改方案 ssc_cl.revise_times_sub() #点击起始倍数的- ssc_cl.revise_confirm() #点击确认修改 text1 = ssc_cl.totalIssue_text() self.assertNotEqual(text1, text, '倍数没有被修改') # 检查是否修改追号期数 ssc_cl.submit_button() # 点击提交按钮 cl.confirm_and_pay_button() # 点击确认支付 hp.Moveable_float_close() # 如果出现浮层弹框,关闭 text2 = sos.submit_order_success() # 获取页面“订单提交成功”文本 self.assertEqual("订单提交成功", text2) trade_name = sos.trade_name_text() # 获取页面商品名称文本 self.assertIn("商品名称:乐优炫彩-重庆时时彩", trade_name)
def test_intelligently_chase_ravise_times_sub_confirm_revise_case(self): '''【修改方案】起始倍数,点击-,点击【确定】,【提交】提交订单''' hp = HomePage_leyou(self.driver) ulcn = UnionLottoChooseNumber_leyou(self.driver) efcn = ElevenFiveChooseNumber_leyou(self.driver) efcl = EleChooseFiveConfirmLottery_leyou(self.driver) ssc_cl = CQSSCConfirmLottery_leyou(self.driver) od = OrderDetails_leyou(self.driver) l = Login_leyou(self.driver) sos = SubmitOrderSuccess_leyou(self.driver) cl = ConfirmLottery_leyou(self.driver) hp.open() hp.Moveable_float_close() hp.My_lottery_ticket() # 点击我的彩票 l.login_leyou() # 登录 hp.homepage_link() # 点击首页 hp.Moveable_float_close() hp.gd_11_5_link() # 点击广东11选5链接 efcn.spread_mode_button() # 展开玩法 efcn.mode_choose(23, 1) # 广东11选5任选二 efcn.hand_options(2) # 任选2个号 efcn.confirm_number_button() # 点击确认选号 text1 = efcl.lottery_chase_throw_text() self.assertIn("1注1期1倍", text1) ssc_cl.intelligently_chase_button() # 点击智能追号 ssc_cl.revise_button() #点击修改方案 ssc_cl.revise_times_input(3) ssc_cl.revise_confirm() # 点击确认修改 text = ssc_cl.totalIssue_text() ssc_cl.revise_button() # 点击修改方案 ssc_cl.revise_times_sub() #点击起始倍数的- ssc_cl.revise_confirm() #点击确认修改 text1 = ssc_cl.totalIssue_text() self.assertNotEqual(text1, text, '倍数没有被修改') # 检查是否修改追号期数 ssc_cl.submit_button() # 点击提交按钮 cl.confirm_and_pay_button() # 点击确认支付 hp.Moveable_float_close() # 如果出现浮层弹框,关闭 text2 = sos.submit_order_success() # 获取页面“订单提交成功”文本 self.assertEqual("订单提交成功", text2) trade_name = sos.trade_name_text() # 获取页面商品名称文本 self.assertIn("商品名称:乐优炫彩-粤11选5", trade_name)