Reputation: 1974
Recently I've been using TestComplete for my automation scripts and it works great. After seeing that it was able to see indepth information about the .net application (such as button names and attributes and etc) I was curious if this feat would be possible to make normally.
Is it possible to create a tool that displays information to such an extent that TestComplete does? More as a side project for me to create an automation tool.
(Side note: the only application I deal with are usually .NET sometimes with Java)
Upvotes: 1
Views: 38
Reputation: 68486
The thing you need is Reflection Class.
Manual http://msdn.microsoft.com/en-us/library/f7ykdhsy%28v=vs.71%29.aspx
Implementation http://www.codeproject.com/Articles/55710/Reflection-in-NET
Upvotes: 1