I'm trying to write an automated testing harness for a large web application ( ASP .NET 2.0 ). I want to create a page within this application that will let the user choose from a list of all the web pages of the application ( listed by their page class names ) and then run the testing harness on the selected page class. What I want the test harness to do, is basically loop through all the controls of the page and run pre-determined checks and tests on each control based on its control type (I.E. check if maxlength of textbox is set, etc. ). I'm encountering two major problems. First, I cannot figure out a way to get at a list of all the page classes of my web application. Second, once I can actually create an object of a page class, I cannot initialize the object with all of the usual controls, thus, I can't run any tests on it. Does anyone know how I can solve either of these two issues? Any help would be greatly appreciated. -Peter
B
bbp33
@bbp33