ContributionsMost RecentMost LikesSolutionsMultiple Instances of test executeHI, I am having a re-ocurring issue where by my test execute has launched multiple instances. This in turn means the tests don't run and I don't get any results. This happens when I run test execute from the command line, running a project and passing it parameters. It doesn't happen when I watch the tests but only when I'm away from the machine over night. In total about 60 calls are made from the command line and I have to close the test executes from the task manager. I have implemented the start /wait command line operations to get tests to run after one another. E.g. start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=FS" /SilentMode /e start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=EX" /SilentMode /e start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=PS" /SilentMode /e start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=BO" /SilentMode /e start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=PO" /SilentMode /e start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=DS" /SilentMode /e start /wait "" "C:\Program Files (x86)\SmartBear\TestExecute 9\Bin\TestExecute.exe" "C:\Development\TestComplete\Inforgen\Inforgen.pjs" /p:"Inforgen v3" /r "runProjects=Inforgen" "Site=Dev" "Tests=RS" /SilentMode /e Re: Smartbear / Test Complete Table TypeHi, Thanks for your response. I have resolved this issue by taking a note of the current line I'm working on, then iterating until the EOF. Then adding a new row and going back to the row I was on by searching for the original row by it's value. Re: Browser maximisingHi, Yes it did help, Although I don't feel it is the long term solution it certainly has allowed me to continue with the work I'm trying to do. Thank you for following up.ADO HelpIn the Documentation: http://support.smartbear.com/viewarticle/28454/ it states that you can use :It can be used to execute only SQL queries ( SELECT, UPDATE, INSERT , etc.), But I can't find an example on how to update command and that's the SQL I would like to use on an Excel document. I need help!Last Operation ActionHi Guys, I was wondering if there's a way to find out what the last operation was (passing it possibly into a function (Java script). So that if after a set amount of time. If the screen hasn't moved on it can re-try the last operation. Kind regards,Re: HMT log file GroupingHi Mike, Thank you very much for this. It is useful but I was actually hoping to have something slightly more clever than that. I have implemented your solution where possible but I still have some roadblocks. This is what I'd like: Log ("Enquiry Stage") KeywordTests.CreateEnquiry.Run(); KeywordTests.EnquiryToQuotation.Run(); Log ("Quotation stage") KeywordTests.CreateQuotation.Run(); KeywordTests.QuotationToSalesOrder.Run(); ... So in this case all the keyword tests are grouped in this kind of tree structure. At the moment they are all in the log item panel. See attached imageHMT log file GroupingHi, I was wondering if there is a way you can group scripts together in the log tree (to create sections). I would like to be able to make the test log more readable as all my actions happen within one script. Kind regards,Smartbear / Test Complete Table TypeObjective: Add a new row to the table at runtime using scripting (JS). Requirements: Remember which table row you are working on so you can go back to it after adding a new row. Any ideas?Browser maximisingHi, I'm hoping to find a solution to make sure the browser is maximised before testing comenses. I launch the browser using: Browsers.Item(btIExplorer).Run(Project.Variables.websiteUrl); I was wondering how I can ensure this is maximised? I was using:- Sys.Process("IEXPLORE").BrowserWindow(0).Maximize(); but this is unreliable as it's hard coded and the browser might not be in running as BrowserWindow(0). Any assistance is appreciated.Re: Maximize browser windowbump