ContributionsMost RecentMost LikesSolutionsRe: Lauching IE not successfullyCode for closing borwsers through TaskManager: Public Function CloseAllBrowser() On Error Resume Next Log.Message ("CloseAllBrowser Function Started") IExplore = Sys.FindAllChildren("ProcessName","iexplore",2) ' IExplore = Sys.FindAllChildren("ProcessName","iexplore") If UBound(IExplore)>=0 Then For i = UBound(IExplore) to LBound(IExplore) Step -1 IExplore(i).Terminate Next End If '******** ErrorHandling ********* If Err.Number <> 0 Then Call ErrMyErrorHandler End If '*************** Log.Message ("CloseAllBrowser Function Completed") End FunctionTestComplete missing charaters randomlyHi Team, My project details for automation : Tool : TestComplete 10 Application Technology : Flex Browser and version: IE 8 During the execution in some charaters are missing randomly while entering into edit/text boxes. Say example I want search a client name - ABC Cinemas , test complete miss some chars raondamly like - AC Cinemas, ABC Cnemas etc. Currently I am using Keys method to enter text even tried with below options but no LUCK. Set obj = Browser(*).Page(*).tbxClntName obj.SetText ("ABC Cinemas") objPage.NativeWebObject.Find("ObjectLabel", "tiStaffName", "TextInput").value = "ABC Cinemas" Highly appritiated your help.