Example #1
0
 def test_04(self, syxp: Shiyexiangpi):
     '''英文姓名太长是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.long_english_name()
     acturl_tips = syxp.get_tips()
     expect_tips = "英文姓名不超过10个字母"
     assert acturl_tips == expect_tips
Example #2
0
 def test_11(self, syxp: Shiyexiangpi):
     '''调起历史订单的微信支付是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.dd_wechat_pay()
     acturl_title = syxp.get_title()
     expect_title = "灵机支付 - 微信扫码支付"
     assert acturl_title == expect_title
Example #3
0
 def test_09(self, syxp: Shiyexiangpi):
     '''调起paypal支付是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.pp_pay()
     acturl_title = syxp.get_title()
     expect_title = "登录您的PayPal账户"
     assert acturl_title == expect_title
Example #4
0
 def test_01(self, syxp: Shiyexiangpi):
     '''名字太短是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.short_name()
     acturl_tips = syxp.get_tips()
     expect_tips = "姓名最少2个字"
     assert acturl_tips == expect_tips
Example #5
0
 def test_03(self, syxp: Shiyexiangpi):
     '''英文姓名太短是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.short_english_name()
     acturl_tips = syxp.get_tips()
     expect_tips = "英文姓名最少3个字母"
     assert acturl_tips == expect_tips
Example #6
0
 def test_02(self, syxp: Shiyexiangpi):
     '''名字太长是否会正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.long_name()
     acturl_tips = syxp.get_tips()
     expect_tips = "姓名不超过5个字"
     assert acturl_tips == expect_tips
Example #7
0
 def test_10(self, syxp: Shiyexiangpi):
     '''进入历史订单是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.lsdd()
     current_url = syxp.get_url()
     acturl_url = re.findall("https://(.+?)/index?", current_url)[0]
     expect_url = "cs.lingbz.com/orderquery"
     assert acturl_url == expect_url
Example #8
0
 def test_05(self, syxp: Shiyexiangpi):
     '''正常填写信息跳转是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.normal_information()
     time.sleep(2)
     current_url = syxp.get_url()
     acturl_url = re.findall("https://(.+?)/pay?", current_url)[0]
     expect_url = "cs.lingbz.com/shiyexiangpi"
     assert acturl_url == expect_url
Example #9
0
 def test_08(self, syxp: Shiyexiangpi):
     '''调起银联支付是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.yl_pay()
     acturl_title = syxp.get_title()
     if acturl_title == 'Unionpay Online Payment-Comprehensive online trading transfer and liquidation platform!':
         assert True
     else:
         expect_title = "银联在线支付-银行卡综合性网上交易转接清算平台!"
         assert acturl_title == expect_title
Example #10
0
 def test_07(self, syxp: Shiyexiangpi):
     '''调起支付宝支付是否正常'''
     syxp.open("/shiyexiangpi/index?channel=online_paytest")
     syxp.zfb_pay()
     acturl_title = syxp.get_title()
     expect_title1 = "支付宝"
     expect_title2 = "支付宝 - 网上支付 安全快速!"
     if acturl_title == "支付宝":
         assert acturl_title == expect_title1
     else:
         assert acturl_title == expect_title2
Example #11
0
def syxp(driver, base_url):
    syxp = Shiyexiangpi(driver, base_url)
    return syxp