ContributionsMost RecentMost LikesSolutionsRe: Sample Applications used by Lino Tadrous and Steve TrefethenThey get sort of hidden by the TC installer. You can find them under your Public user folder for example, on Vista it's c:\Users\Public\Documents\TestComplete X Samples\ Where X is your version number. This is documented in the book as well. HTH, -SteveRe: How to run a set of selected test items repeatly from tc8 script in tc8 It can be done. You have access to the test items from Script like this: var testcaption = Project.TestItems.TestItem(0).ElementToBeRun.Caption; The test item caption will look something like "Script\Unit1 - Dlg" That tells you it's a script, the unit name and function name to execute. From there you could use the eval method (JScript) and call the function after parsing out the name: eval(ParseElementToBeRun(testcaption)); Of course, ParseElementToBeRun is left as an exercise for the reader. :) Good luck, -Steve Get Trained! http://www.automatedqa.com/support/training/ Re: Feature Request: Manual Test RecorderPlease count my vote too. With Keyword tests in particular it seems like it might be fairly easy to convert these to a Manual test given all of the information each step in the test has about what action was performed. Great suggestion Jen! -Steve Falafel Software Get TestComplete TrainingRe: Where to ask questions about the forum itself?It seems since the which from the NNTP based forums that the number of threads has really dropped. Is it just me? Re: Simple Internet Explorer login dialog recording fails <blockquote>It seems your case is not an ordinary one. </blockquote> IMO, there's nothing special about this testcase it's just that it uses the browser's login dialog. Btw, do you guys have a different UI than regular users as I see no way to quote a previous message as you did in your reply above. Am I missing something? -Steve Re: How to Execute a Stored Procedure from within a Test.We get this question a lot during TestComplete trainings and we now have a video on it available here. -Steve Register Now! TestComplete Keyword Online Training April 12-14th Videos on web login scenariosWe've recently published a few videos on web login that you may find useful available here: http://tv.falafel.com/TestComplete.aspx Feel free to post requests for additional video topics. Enjoy! -Steve New! TestComplete Keyword Online Training April 12-14th Register now: http://store.falafel.com/p-62-testcomplete-keyword-testing-online-summit.aspx Re: Chrome, Opera supportCount my vote too particularly for Chrome. Thanks Re: IE status bar alert signDave, You also might try turning on MSAA support for "msctls_statusbar32". You'll see a lot more information about the sections of the status bar which could be helpful. To add this double click your project from the explorer, select properties, click Open Applications | MSAA and add a new entry with the string quoted above. I created a video on working with MSAA in case this seems confusing. http://tv.falafel.com/default/09-11-06/TestComplete_support_for_MSAA_can_ease_UI_automation.aspx -Steve Re: Simple Internet Explorer login dialog recording failsHi Alex, Actually, that's sort of my point. ToUrl isn't valid in this context because the page is only partially downloaded when the login dialog appears so it would never work in this example. Give it a try it's a rather troublesome scenario for TC to try and capture. I find that it requires hand coding to deal with this scenario. I'd love to see if there is some way to get a recording to work correctly. Vallabh, This really has nothing to do with parameters being passed to IE. The real issue here is that TC never records the Navigate command which is what would have to be used in this instance as ToUrl will hang the test. Again, I'd like to see a situation where this gets recorded correctly. At present, I don't think this is possible and I've tried lots of things, hand coding is required. HTH, -Steve