ContributionsMost RecentMost LikesSolutionsRe: Application Stopped responding Hi; Finally i have found solution of my bug; It's matter of web page, i activate the navigate browser of the test number 108 and all work fine But i noticed that as the execution progress to the end the tests become more slow, and i don't know Why!! Thank you very match for your help and attempt to resolve my problem PS: i would pass a certification Exam of test complete for beginner/or intermediate, what dou you advice me? Thank you in advance Re: Application Stopped responding Thank you for your response But in all my test I have only -The RUN Browser- activated in the first Test (Test 1)and -Close Browser- at the end (test 109) according to my logic, I think its problem of name mapping is't it? Please do you have other solution Thank you Application Stopped responding Hi I realized a web project that contains 109 test with Keyword tests and sripting, each tests work fine, but when I run the all together, and before the execution ends, The system stops and displays the following error at 108 test "An error occured", in second time I have the other error "Your Windows is destroyed" and errors is repeated each time i run the project. I checked the option in tes complete like: propreties= tree model and Web page loading timeout, ms=60000 I noticed that, when I click right with the mouse, more than one web page of the application are opened, even if i closed them it happen the same error Please could you give me somme advice and track for this error thanks for advance Re: How can I apply chekpoint on the popup message in testcomplete Hi Alex and robert I have found solution there is bellow: function CheckSupprimerProfile() { //search panel of popup message var popUpPanel=Sys.Browser("iexplore").Page("https://adm-idz-sys.intranet.mrn.gouv/fr/ProfileApplication/Index/IDZADMINTC").Panel("toast_container").Panel(0); var mesDivs = popUpPanel.getElementsByClassName("toast-message"); var exists= false; for (var i = 0; i < mesDivs.length; i++) { var message = mesDivs[i].getAttribute("aria-label"); if ( message == "Profile 'CONSULTATION' supprimé" ) { exists = true; } } if(exists){ //Compares the panelProfileConsultationSupprimer Stores item with the properties of the Aliases.browser.pageIdzadmintcProfil.pageCreerProfil.panelCreerProfil.panelModalContent object. Objects.panelProfileConsultationSupprimer.Check(Aliases.browser.pageIdzadmintcProfil.pageCreerProfil.panelCreerProfil.panelModalContent); Log.Message("profile Consultation supprimé avec succès"); } } I have introduce parameters of the message because this script i use it several times Thank you in advance and for your professionalism Re: How can I apply chekpoint on the popup message in testcomplete Thank you Alex; As Robert advice me in his last message to record action and click on the pop up message, it does'nt work for me that give the same name mapping (The webpage object). I try your idea to use FindChildEx and i perform the script bellow function ConfirmerSuppProfile(){ var page = Sys.Browser().WaitPage("*"); var prop=["ObjectType","contentText","VisibleOnScreen","Enabled"]; var values = ["Panel","Profile 'CONSULTATION' supprimé","True","True"]; var depth = 5; var popupmsg = page.FindChildEx(prop,values,depth,true,1000); if(popupmsg.Exists) Log.Message("Profile consultation supprimé"); else Log.Error("The object was not found"); } when i chage the page it give me the same result!! :( Is it possible to use the generated source of the web page, and how i can process, because i don't find any think related to the pop up message Thanks Re: How can I apply chekpoint on the popup message in testcomplete Thank you Mr martin for your response I still have error in execution of script because he did'nt recognize the napped object, in my last message i say that the mapped object in name mapping is related to All the pageweb I change a script and it give result but I'm not convinced that the good one here is my new script function ValeurCodeProfile(){ if(Aliases.browser.pageIdzadmintcProfil.pageCreerProfil.WaitProperty("VisibleOnScreen",true,60000)) { Log.Picture(Aliases.browser.pageIdzadmintcProfil.pageCreerProfil," Profile CONSULTATION supprimé "); } Thank you in advance Re: How can I apply chekpoint on the popup message in testcomplete Thank you for your answer But when i map the pop up message and check it in name mapping i realise that it is all the eb page page . I have developpes a script that ensure tne chek of the pop up message can you verify it for me function CheckProfile(){ if(Aliases.browser.pageIdzadmintcProfil.pageCreerProfil.panelModalContent.WaitProperty("VisibleOnScreen",true,20000)) { Log.Picture (Aliases.browser.pageIdzadmintcProfil.pageCreerProfil.panelCreerProfil.panelModalContent," Profile CONSULTATION supprimé "); } } I have attached a screen shot of may name mapping on the pop up message Thank you for answer How can I apply chekpoint on the popup message in testcomplete Hi; I'm testing a web application realised with .net and Angular Js, whith Testcomplete V12. In my test i would apply a chekpoint on the pop up message that appear for few second (2-3 second) in the web page, that confirm add or delete record. and desappear after that (its a Dynamic object) Please are there a built in or operation that perform this check point in testcomplete v12, since it support Angular js. Thank you in advance PS: you have the screen shot of my Pop up message in attachements bellow. thanks