我想使用.bat命令将在TestComplete中构建的项目转换为TestExecute
由于项目是CI过程的一部分,因此每天都会发布新版本,并且需要自动进行转换;
用于运行项目的.bat文件:
net use O: /delete
net use O: %1 /persisten:no
echo %PATH%
IF EXIST "C:\Program Files (x86)\SmartBear\TestExecute 12" (
**I would like to enter conversion of project here**
"C:\Program Files (x86)\SmartBear\TestExecute 12\Bin\TestExecute.exe" "O:\Diamond.pjs"
) ELSE (
echo "test execute 12 not installed"
)
net use O: /delete发布于 2019-06-13 14:15:31
您可以在运行工程的同时强制转换:
"C:\Program Files (x86)\SmartBear\TestExecute 12\Bin\TestExecute.exe" "O:\Diamond.pjs" /SilentMode /ForceConversionhttps://stackoverflow.com/questions/56539158
复制相似问题