__st__.py 862 字节
Newer Older
陈泽健's avatar
陈泽健 committed
1 2 3
import sys
import os
from time import sleep
4

陈泽健's avatar
陈泽健 committed
5 6 7
# 获取当前脚本的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建预定系统的绝对路径
8
预定系统_path = os.path.abspath(os.path.join(current_dir, '..','..','..'))
陈泽健's avatar
陈泽健 committed
9 10 11
# 添加路径
sys.path.append(预定系统_path)
# 导入模块
12 13 14 15 16 17
try:
    from 预定系统.Base.base import *
except ModuleNotFoundError as e:
    print(f"ModuleNotFoundError: {e}")
    print("尝试使用绝对路径导入")
    from 预定系统.Base.base import *
陈泽健's avatar
陈泽健 committed
18 19 20

def suite_setup():
    STEP(1, "初始化浏览器")
21 22 23
    login_exhibit_url = 'http://192.168.5.200:8080/#/login/logindf'
    login_exhibit_ngrok_url = 'http://nat.ubainsyun.com:11060/#/login/logindf'
    browser_init(login_exhibit_url)
陈泽健's avatar
陈泽健 committed
24 25

    wd = GSTORE['wd']
26 27 28 29
    admin_login("Test02", "ubains@123")

def suite_teardown():
    browser_quit()