ContributionsMost RecentMost LikesSolutionsHow to automated WPF and .Net Apllication Hi, I just like to know how am I automated WPF and(.net application).Could you give me idea how I inspect the object and it is possible to automated. regards Urmi Solvedhow to handle uncertain message in application Hi, I have 14 testcases and using test execute for running test cases.My appliction if one testcase failed and showing message (Attached this meseage) and if I am not Click leave on message then all of them failed .But I donot Know when this message coming .If comes how I handle and what is the code for it .So my other test cases would be passed. Thanks SolvedRe: Verify SuccessfulMessage showing page object method function objPages() { var page = Sys.Browser("*").Page("*"); return page; } Re: Verify SuccessfulMessage Tc doest not shows proper messages. Re: Verify SuccessfulMessage objPages() is intialize browser and page.as requested I attached screenshot my object tree. Verify SuccessfulMessage I have to verify this Message "'Saved and published successfully!'"in my page .if not show error Message.I inclueded my code but not working.Please help me to this code: function objCheckSMessage() { fMessage = "Test Failed"; var successfulMessage = objPages().FindChild(['Name', 'idStr'],['TextNode("validationSuccessMsg")', "validationSuccessMsg"], 20); var sMessage = successfulMessage.contentText; if (sMessage == 'Saved and published successfully!' ) { Log.Message("Addcustomer:" + sMessage); } else { Log.Message("Error Message: " +fMessage ); } } SolvedIs it possible using Driver Scripts in Test complete like QTP is it possible using Driver scripts in Test complete like QTP to run batch files using schedule Tasks.If yes,How it is works? SolvedRe: Check entity from drop down boxI am testing web app and I have select entity box .When I click select entity box ,it is spread and shows five check box entity.My test is if I check first entity it is show select entity box, then I have to click search button to search that entity and verify text that entity showing and I have to do same way other 4 of them.I am not doing keyword testing.I am using findchild method to find objects property and value.I try to do using array and looping ,each checkbox ckecked and do it function.then goes to other and functionality are same for all entities.so it can reduce my object library and functional library.Check entity from drop down boxUsing array,how to check each entity from drop down list SolvedHow I can iterate each Function in one testcase.(rather than keyword View My project has dropdowncheck boxes.When I click each check box ,they have their own functionality.I try to create functionality for each check box and try to make one testcase with checkboxes.How I put iteration like one checkbox is select and do its functionality and after that second will click and do its functionality.