Get "filePath" value set for -exportLogs parameter on tests start
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2019
04:12 AM
07-10-2019
04:12 AM
Get "filePath" value set for -exportLogs parameter on tests start
We're running the tests with PowerShell command
$pinfo = New-Object System.Diagnostics.ProcessStartInfo $folderName = $env:logsPath $pinfo.FileName = "C:\Program Files (x86)\SmartBear\TestComplete 14\Bin\TestComplete.exe" $pinfo.Arguments = "$projectSuitePath /r $(if ($project) {"/project:$project "} else {''})/e /SilentMode /el:$folderName\index.htm /es:$folderName\summary.htm" $p = New-Object System.Diagnostics.Process $p.StartInfo = $pinfo $p.Start() | Out-Null $p.WaitForExit()
Before running the tests, unique filePath is generated by another script.
The Path is used in the testСomplete project to post logs on start and on error.
Now I'm using the environment variable to solve this issue.
Is there a way to get the value of that parameter in test complete scripts?
Solved! Go to Solution.
2 REPLIES 2
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2019
06:25 AM
07-10-2019
06:25 AM
Yes, you definitely can!
The section Remarks will guide you through creating a parser for your custom command line args.
Thanks,
Carson
Click the Accept as Solution button if my answer has helped
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2019
08:04 AM
07-10-2019
08:04 AM
Thank you a lot!
As a result, I got the function below:
function getCommandLineArgs() {
let args = { file_name: BuiltIn.ParamStr(1) };
let argsList = [];
for (let i = 2; i <= BuiltIn.ParamCount(); i++) argsList.push(BuiltIn.ParamStr(i));
argsList.forEach(p => {
const [key, value] = p.substring(1).split(/:(.+)/);
args[key] = value == null ? true : value;
});
return args;
}
