1 Star 2 Fork 0

eddiewang-wgq/selenium_python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run_ai_test.py 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
eddiewang-wgq 提交于 2021-03-31 15:21 . Initial commit
# coding=utf-8
import sys
sys.path.append('/home/selenium_python')
from HTMLTestRunner import HTMLTestRunner
from config import globalparam
import unittest
import time
test_dir = "./test_case"
discover = unittest.defaultTestLoader.discover(test_dir, pattern="*sta.py")
if __name__ == "__main__":
# Get the current time in a certain format
now = time.strftime("%Y-%m-%d-%H-%M-%S")
# Define the report storage path
filename = globalparam.report_path + "\\" + now + "result.html"
fp = open(filename, "wb")
# Define test report
runner = HTMLTestRunner(stream=fp, title="测试报告", description="用例执行情况:")
runner.run(discover)
fp.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eddiewang-wgq/selenium_python.git
git@gitee.com:eddiewang-wgq/selenium_python.git
eddiewang-wgq
selenium_python
selenium_python
master

搜索帮助