ContributionsMost RecentMost LikesSolutionsrunning more than 1 project at once from command lineseems like should be easy but it does not work ... The below batch file is located in the BIN folder under SOAPUI installation folder. I am trying to to run 2 projects there: AccountManagement\AccountManagement-soapui-project.xml and LookupService-soapui-project.xml I am using testrunner.bat file in both line. Expect: both projects are executed Actual: ONLY first project got executed (properly) Could you, please, help? runAccountManagement_Lookup.bat: rem ********* soapui project starts *********** testrunner.bat "C:\Workspace\Automation\soapUI_Scripts\Neon\Integration_Environment\AccountManagement\AccountManagement-soapui-project.xml" -t"C:\Workspace\Automation\soapUI_Scripts\Neon\Localhost_Environment\Neon-localhost-soapui-settings.xml" -j -f"C:\temp\results" testrunner.bat "C:\Workspace\Automation\soapUI_Scripts\Neon\Integration_Environment\Lookup\LookupService-soapui-project.xml" -t"C:\Workspace\Automation\soapUI_Scripts\Neon\Localhost_Environment\Neon-localhost-soapui-settings.xml" -j -f"C:\temp\results" rem ********* soapui Lookup project finished *********no SOAPUI PRO tab.Ole, in SOAPUI 2.5.1 (Build daily-2008-12-01-[1], Build Date 2008/12/01 02:05) under file->preferences there is no SOAPUI PRO tab. So you only have an option to import preferences (not to set them yourself) Did you do this on purpose? there is no also help->Update License How do you install/update license?Re: step "HTTP Test Request"Ole, in SOAPUI 2.5.1 (Build daily-2008-12-01-[1], Build Date 2008/12/01 02:05) under file->preferences there is no SOAPUI PRO tab. So you only have an option to import preferences (not to set them yourself) Did you do this on purpose?step "HTTP Test Request"Ole, could you please show an example of using this new step "HTTP Test Request"? Let's say you have an .aspx and .html page (http://cswebdev.tvguide.com/v6/DiagnosticPage.aspx) (file:///c:/DiagnosticPage.html) So a test case consists of just 1 step "HTTP Test Request", correct? When you add this step you specify an end point: http://cswebdev.tvguide.com/v6/DiagnosticPage.aspx Method = Get What else should I do to make it work? (because it's not working for me now) ThanksRe: Validate HTML contentOle, could you please show an example of using this new step "HTTP Test Request"? Let's say you have an .aspx and .html page (http://cswebdev.tvguide.com/v6/DiagnosticPage.aspx) (file:///c:/DiagnosticPage.html) So a test case consists of just 1 step "HTTP Test Request", correct? When you add this step you specify an end point: http://cswebdev.tvguide.com/v6/DiagnosticPage.aspx Method = Get What else should I do to make it work? ThanksValidate HTML contentHello, I need to validate that for instance the service AccountManagementService has the value Pass in its row in the attached file DiagnosticPage.html. Can you write something for this, please? I got the contents of the web page in the file by doing this: def address = DiagnosticPage; def file = new FileOutputStream("C:\\DiagnosticPage.html") //def file = new FileOutputStream("C:\\DiagnosticPage.xml") def out = new BufferedOutputStream(file) out << new URL(address).openStream() out.close() Another question: can you do the validation on the fly? (without writing contents in the file first)Re: debugging. stepping in groovy filethanks Oledebugging. stepping in groovy fileHello guys, is it possible to run SoapUI scripts in debugging mode (the same way as you debug a Visual Studio project with possibility of stepping in any source file)? I am interested in being able to step in a Groovy file in a debugging mode and use options similar to Visiual Studio's like "step into", "step out", "step over" and so on.Re: assertionOle, thanks. It worksassertionOle, how would you implement an assertion against a value in the property step? Can it be done in a XPath Match assertion (without groovy script ) something like this? (I just copied from XPath assertion) declare namespace ns1='http://services.tvguide.com/v2.5/common/types'; declare namespace ns2='http://services.tvguide.com/v2.5/listings'; //ns2:GetProgramDetailsResponse/ns2:GetProgramDetailsResult/ns1:ClientBatchId data.ClientBatchId where data is a property step name and ClientBatchId is the property name (basically how would you refer to your property in a standard XPath assertion?) How would you do that with groovy? Thanks