__st__.py 707 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
import sys
import os
from time import sleep
# 获取当前脚本的绝对路径
current_dir = os.path.dirname(os.path.abspath(__file__))
# 构建预定系统的绝对路径
预定系统_path = os.path.abspath(os.path.join(current_dir, '..','..'))
# 添加路径
sys.path.append(预定系统_path)
# 导入模块
from 预定系统.Base.base import *

def suite_setup():
    STEP(1, "初始化浏览器")
    # 初始化浏览器与系统地址
    browser_init("标准版预定系统")

    wd = GSTORE['wd']
    admin_login("admin@Test", "Ubains@4321")
    sleep(2)
    safe_click((By.CSS_SELECTOR, ".el-collapse-item__arrow.el-icon-arrow-right"), wd)
    sleep(2)


def suite_teardown():
    browser_quit()