Getting error "Unable to determine the installation folder of TestComplete"
Getting error " C:\TCLog\TCBuild.MSBuild(13,1): error : Unable to determine the installation folder of TestComplete (TestExecute)." when trying to execute the MSBuild project file. MSBuild code: <!-- File: MSBUILD.proj --> <!-- Root element of the MSBuild project --> <Project defaulttargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- Declares the task type, ExecuteSolution, that will be used to run TestComplete projects (TC12 is a namespace). --> <UsingTask TaskName="TC12.ExecuteSolution" AssemblyName= "MSBuildTC12Task, Version=1.1.0.0, Culture=neutral, PublicKeyToken=e33f56e68d0f845e"/> <!-- Target --> <Target Name="Build"> <!-- Executes the task. Note that the tag name, ExecuteSolution, coincides with the registered task name. --> <ExecuteSolution SolutionFile="C:\Users\rkusuma\Documents\TestComplete 12 Projects\TestProject1027\TestProject1027.pjs" StopIfFail="true" AdditionalOptions="/project:TestProject1027" GUIInteractive="true" LogFile="C:\Users\rkusuma\Documents\TestComplete 12 Projects\TestProject1027\MyResults.mht" /> </Target> </Project>Solved2.4KViews0likes5CommentsSoapUI 5.1.3 not picking up system property soapui.ext.libraries values from cmdline.
Hi I wanted to run my soap test from commandline using soapui 5.1.3 and this soap project also contains groovy script which is using apacheexcel and other jarlibraries. So I set a folder where I would keep those libraries. In the commandline I set the system property "soapui.ext.libraries"' withthe library path but when I ran it , I get class not found error. Strange thing is that it works fine on soapui 5.0.0. Is it a bug? Can somebody help me out . Thanks SET currdir=%cd%\\ "C:\Users\john\Downloads\SoapUI-5.1.3-windows-bin\SoapUI-5.1.3\bin\testrunner.bat" -Dsoapui.ext.libraries="SoapScript\libraries\java" -PDIR="%currdir%" -s KB -c TestRunner -r "SoapScript\SOAPtestProj.xml" And Im getting this error script143230703171088716808.groovy: 3: unable to resolve class org.apache.poi.ss.util.CellReference @ line 3, column 1. import org.apache.poi.ss.util.CellReference ^ script143230703171088716808.groovy: 32: unable to resolve class XSSFWorkbook @ line 32, column 11. wb=new XSSFWorkbook(fis) ^1.1KViews0likes1CommentHow to send Indicator and/or Log.Message to Console during TestComplete run from command line?
I run TestComplete project from the command line using a .bat file. I would like the Indicator messages or the Log.Message/Error/Warning/Checkpoint or both to appear in the console window during the run of TestComplete from the command line. How can I do this? Thank you.727Views0likes1Comment