How to find your application window/childwindow using TestStach.White

Try below code to find your application window/child windows by using TestStack.White framework – Lets take NotePad as our application – //get the required window List windows = new List(); windows = Desktop.Instance.Windows(); //Get all the windows on desktop for (int i = 0; i < windows.Count; i++) { string str = windows[i].Title; if (str.Contains(“Notepad”))…

Weblinks to know more about TestStack.White framework

We have seen how we can automate desktop applications using testStackWhite feamework. Some more useful links you can follow A very useful weblink to know more about white framework from white.codeplex.com is HERE. http://www.dreamincode.net/forums/topic/322108-c%23-teststackwhite-for-beginners/ http://blogs.msdn.com/b/john_daddamio/archive/2008/04/04/testing-wpf-applications-with-the-white-ui-test-framework.aspx White: An UI Automation Tool for Windows Application This is what I got till now with my searching thru internet,…