0 Star 0 Fork 2

北木/selenium auto test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 676 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaotech 提交于 2015-09-18 10:24 . init selenium set
#!/usr/bin/env python
import unittest
import testcases
import HTMLTestRunner
import sys
import time
import os
BaseDir = '/usr/local/nginx/html/'
def get_save_path():
now = time.localtime()
dir = time.strftime('%Y%m%d',now)
if not os.path.exists(BaseDir+dir):
os.mkdir(BaseDir+dir)
file = time.strftime('%H%M%S',now)
return BaseDir+dir+'/'+'Report_'+file+'.html'
if __name__ == '__main__':
suite = unittest.TestSuite()
for s in testcases.suites:
suite.addTest(unittest.defaultTestLoader.loadTestsFromName(s))
fp = open('%s' %(get_save_path()),'wb')
runner = HTMLTestRunner.HTMLTestRunner(stream=fp,title='REPORT',description='DESC')
runner.run(suite)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/c_ym/selenium-auto-test.git
git@gitee.com:c_ym/selenium-auto-test.git
c_ym
selenium-auto-test
selenium auto test
master

搜索帮助