可以利用任何计划程序来启动并传递合适的命令行参数给TestComplete。例如,可以利用windows的任务计划来定时启动TC并执行测试脚本。
任务计划制定步骤
1、 在控制面板打开任务计划
2、 添加一个任务计划
3、 选择TestComplete作为运行应用程序
4、 在高级属性设置中,指定如下命令行参数:
<TC安装路径>\Bin\TestComplete.exe <项目文件的路径>/r /e
或者:
<TC安装路径>\Bin\TestComplete.exe <project suite的路径>/r /e
TC的退出代码
如果你想知道测试脚本运行是否成功,TestComplete提供如下表所列的退出代码,用于报告上一次测试的结果:
Exit Code Description
0 上次测试没有产生错误或警告
1 上次测试结果出现警告但没有错误
2 上次测试结果出现错误
3 由于出现错误导致脚本无法运行,典型错误可能是测试组套的某个脚本程序不存在
可以在批处理文件中使用TC的这些退出代码,例如:
REM Clears the screen
CLS
@ECHO OFF
REM Launches TestComplete,
REM executes the specified project
REM and closes TestComplete when the run is over
START \W C:\TestCompleteFolder\Bin\TestComplete.exe /r /e C:\TestCompleteFolder\Projects\MyProj\MyProj.mds
IF ERRORLEVEL 3 GOTO CannotRun
IF ERRORLEVEL 2 GOTO Errors
IF ERRORLEVEL 1 GOTO Warnings
IF ERRORLEVEL 0 GOTO Success
CannotRun
ECHO The script cannot be run
GOTO End
:Errors
ECHO There are errors
GOTO End
:Warnings
ECHO There are warnings
GOTO End
:Success
ECHO No errors
GOTO End
:End
命令行参数
TC的命令行参数如下所示:
TestComplete.exe [file_name [/run [(/project:project_name) | (/project:project_name /projectitem:item_name) | (/project:project_name /unit:unit_name /routine:routine_name)] [/exit]][/SilentMode][/ns]
可以指定运行整个TC项目,也可以指定执行某个单元的某个脚本程序,运行模式可以是安静模式,还可以指定启动TC时是否显示Splash界面。
文章来源于领测软件测试网 https://www.ltesting.net/