ContributionsMost RecentMost LikesSolutionsRe: PopupMenu Item Checked >Also, in last conditional stmnt I am Checking, if item was checked. need to know whether it is correct or not? Are all the items checkbox? If they are, you can uncheck them. Then run your script again to check whether the result is same. If two results are the same, definitely it's wrong. Re: If Object using ImageRepository. >How do you study about Test Complete? Like you,study by smart bear video, document, join into seminar and search keyword in community. And look some old books. But there are few documents in local language(Chinese). I had ever tried to learn it by navigating TestComplete's setting menu. If I met an unknown function, I would search for it in the document. But it need a lot of time to finish it. I would recommend learning during the use process. When you encounter problem, search it in document or submit it to community. We will try our best to answer it. Tips: I think the core part of TestComplete is NameMapping(Management all objects here). If you want to use TestComplete better, you need to understand it clearly. >How different part of CookBook and Smart Bear Support Document ? You can find the way to solve the common problems of testing in the cookbook(Best practices). And you are able to find all the functions or methods about TestComplete in document(TestCompelte overall knowledge). >Are there any the latest other books you would like to recommend? I haven't found the latest other books yet.If I found one , I would tell you. Re: If Object using ImageRepository. I wrote script instead of keyword type. In script: if(ImageRepository.ImageSet1.pic1.Exists) { Log.Message("The picture object existed"); }else { Log.Message("The picture object doesn't exist"); } Please refer to the example code. I hope it can help. By the way, I heard of you are from Republic ofKorea. I'm from China. We are close.😁 Re: Test Complete Study Study online is good way to learn overall the knowledge about TestComplete. I remembered there was a series of advance classes. You can contactsonya_m to ask about it. By the way, there was a old book 'Test Complete cookbook' (2013). All of content was written by TestComplete9 or 10. I think it also can help you to understand TestComplete core content. Re: TestComplete - Verify if a web page loads with all images and content Please check link below. I think it can help. Wait For Web Pages | TestComplete Documentation (smartbear.com) Re: xPath won't recognize I know what you mean. If the name mapping is correct. BitInternational should be browser type. BitInternationTest should be the website page that you want to operate. Could the object in namemapping be hightlight? Or this object is in an iframe. You need to switch to iframe first and then can use it. Please check it. Re: xPath won't recognize When there are multiple xpaths(1,2,3,4,5) in the same object of the namemapping. Like your capture shown. I think the check rule like below. TestComplete will recognize the object with the order of the selected xpaths. If 1 failed it will check 2. If 2 failed it will check 3.... If you want to recognize the object correctly. 1.Make sure the xpath is correct first. 2.Make sure the object display when you operate it by xpath.(You can add delay time in the previous step) To the xpath: You can try to replace start-with with contains. I hope it can help. Re: close browser Please check the WaitBrowser Method as follow. I think it can help. Sys.WaitBrowser Method | TestComplete Documentation (smartbear.com) Re: Log4J vulnerability I have the same question. Let's wait for the answer. Re: How to automate Browser Pop Up Please check handle JavaScript Popups. May it can help. PS: Do the precondition first as Marsha_R said. Handle JavaScript Popups and Browser Dialogs | TestComplete Documentation (smartbear.com)