35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
||
# __author__ = 'xinjiu.qiao'
|
||
|
||
import allure
|
||
|
||
@allure.feature('ViSpark 登录前及登录测试')
|
||
class TestLogin(object):
|
||
|
||
@allure.story("[login(登录)--006]")
|
||
@allure.title("[login(家长端首页进入登录验证)--006]")
|
||
def test_login_case4(self):
|
||
# nickname = user_info.get("nickname")
|
||
# 步骤1(建议一个页面用一个步骤)
|
||
print("第一步")
|
||
assert 1==1
|
||
print("第二把")
|
||
|
||
@allure.story("[login(登录)--007]")
|
||
@allure.title("[login(家长端首页进入登录验证)--007]")
|
||
def test_login_case5(self):
|
||
# nickname = user_info.get("nickname")
|
||
# 步骤1(建议一个页面用一个步骤)
|
||
print("第3步")
|
||
assert 1 == 1
|
||
print("第4把")
|
||
|
||
@allure.story("[login(登录)--008]")
|
||
@allure.title("[login(家长端首页进入登录验证)--008]")
|
||
def test_login_case6(self):
|
||
# nickname = user_info.get("nickname")
|
||
# 步骤1(建议一个页面用一个步骤)
|
||
print("第5步")
|
||
assert 1 == 1
|
||
print("第6把")
|
||
allure.description("成功的用例") |