def test_onestar_machine_choose_five_delete_one_case(self): '''机选5注,投注确认页,点击【单个删除投注】图标,投注注数减少一注,提交订单''' hp = HomePage_lelun(self.driver) hp.open() l = Login_lelun(self.driver) efcn = ElevenFiveChooseNumber_lelun(self.driver) efcl = EleChooseFiveConfirmLottery_lelun(self.driver) cl = ConfirmLottery_lelun(self.driver) sos = SubmitOrderSuccess_lelun(self.driver) ulcn = UnionLottoChooseNumber_lelun(self.driver) hp.Moveable_float_close() # 点击关闭浮窗 hp.My_lottery_ticket() # 点击我的彩票 l.login_lelun() # 点击登录 hp.homepage_link() # 点击首页 hp.cqssc_link() # 点击重庆时时彩链接 ssc_cn = CQSSC_ChooseNumber_lelun(self.driver) ssc_cn.play_mode() # 选择模式 ssc_cn.one_star() # 选择一星 ulcn.machine_choose_button() # 点击机选 ulcn.machine_choose_five_button() # 机选5注 num=cl.event_count()#获取总共有多少注 cl.del_n(5) # 选择删除第5场投注 num1 = cl.event_count()#获取删除后的场数 self.assertEqual(num-1,num1) bb = efcl.lottery_chase_throw_text() # 获取注数倍数 self.assertIn("4注1期1倍", bb) efcl.submit_order_button() # 点击提交订单给站主 cl.confirm_and_pay_button() # 点击确认并支付 hp.Moveable_float_close() # 如果出现浮层弹框,关闭 text = sos.submit_order_success() # 获取页面“订单提交成功”文本 self.assertEqual("订单提交成功", text) hp.Moveable_float_close() # 如果出现浮层弹框,关闭 trade_name = sos.trade_name_text() # 获取页面商品名称文本 self.assertIn("商品名称:乐秀赢球-重庆时时彩", trade_name)
def test_many_lottery_ckick_x_case(self): '''在投注确认页面,多注号码,点击左边X按钮,能够删除所选号码''' ###点击进入大乐透进入大乐透选号页面### hp = HomePage_lelun(self.driver) hp.open() ######判断是否出现浮层弹框,如果出现浮层点击X,然后执行下一步操作 hp.Moveable_float_close() l = Login_lelun(self.driver) hp.My_lottery_ticket() # 点击我的彩票 l.login_lelun() # 点击登录 sos = SubmitOrderSuccess_lelun(self.driver) hp.homepage_link() # 点击首页 hp.Moveable_float_close() hp.Lottery_link() # 点击大乐透链接 blcn = BigLotteryChooseNum_lelun(self.driver) blcl = BigLotteryConfirmLottery_lelun(self.driver) cl = ConfirmLottery_lelun(self.driver) od = OrderDetails_lelun(self.driver) ulcn = UnionLottoChooseNumber_lelun(self.driver) ulcn.machine_choose_button() #点击机选按钮 ulcn.machine_choose_five_button() #点击机选5注 num = cl.event_count() # 获取总共有多少注 print("删除前共有%d场" % num) for i in range(0, num): cl.Del_x() #点击单个删除x ulcn.machine_choose_button() # 点击机选按钮 ulcn.machine_choose_one_button() # 点击机选1注 ulcn.Confirm_button() # 确认选号 num1 = cl.lottery_number_text() # 获取注数 self.assertIn("1", num1) cl.submit_order_to_station_owner_button() # 点击提交订单给站主 cl.confirm_and_pay_button() # 点击确认并支付 hp.Moveable_float_close() # 如果出现浮层弹框,关闭 text = sos.submit_order_success() # 获取页面“订单提交成功”文本 self.assertEqual("订单提交成功", text) hp.Moveable_float_close() # 如果出现浮层弹框,关闭 trade_name = sos.trade_name_text() # 获取页面商品名称文本 self.assertIn("商品名称:乐仑炫彩-大乐透", trade_name)
def test_onestar_machine_choose_five_delete_all_case(self): '''机选5注,投注确认页,点击【单个删除投注】图标,删除所有注数,跳转至选号页,手选复式(2注),提交订单''' hp = HomePage_lelun(self.driver) hp.open() l = Login_lelun(self.driver) efcn = ElevenFiveChooseNumber_lelun(self.driver) efcl = EleChooseFiveConfirmLottery_lelun(self.driver) cl = ConfirmLottery_lelun(self.driver) sos = SubmitOrderSuccess_lelun(self.driver) ulcn = UnionLottoChooseNumber_lelun(self.driver) hp.Moveable_float_close() # 点击关闭浮窗 hp.My_lottery_ticket() # 点击我的彩票 l.login_lelun() # 点击登录 hp.homepage_link() # 点击首页 hp.cqssc_link() # 点击重庆时时彩链接 ssc_cn = CQSSC_ChooseNumber_lelun(self.driver) ssc_cn.play_mode() # 选择模式 ssc_cn.one_star() # 选择一星 ulcn.machine_choose_button() # 点击机选 ulcn.machine_choose_five_button() # 机选5注 num=cl.event_count()#获取总共有多少注 print("删除前共有%d场"%num) for i in range(1,(num+1)): cl.del_n(i) # 选择删除第5场投注 sleep(1) ssc_cn.gewei_random(2) efcn.confirm_number_button()#确认选号 bb = efcl.lottery_chase_throw_text() # 获取注数倍数 self.assertIn("2注1期1倍", bb) efcl.submit_order_button() # 点击提交订单给站主 cl.confirm_and_pay_button() # 点击确认并支付 hp.Moveable_float_close() # 如果出现浮层弹框,关闭 text = sos.submit_order_success() # 获取页面“订单提交成功”文本 self.assertEqual("订单提交成功", text) hp.Moveable_float_close() # 如果出现浮层弹框,关闭 trade_name = sos.trade_name_text() # 获取页面商品名称文本 self.assertIn("商品名称:乐秀赢球-重庆时时彩", trade_name)