azman Posted March 4, 2005 Posted March 4, 2005 (edited) Hi! I want to know can I test C# project with AutoIt????. Thanks for help!!! Edited March 4, 2005 by azman
SumTingWong Posted March 4, 2005 Posted March 4, 2005 (edited) Your question is about as clear as water from a sewer. Don't be an az man...give us a bit more info. Edited March 4, 2005 by pacman
Henrik Posted March 4, 2005 Posted March 4, 2005 Xprogramming has a list of various free testing tools, including many for the .NET languages. If what you need is to test C# code during development, you can find something there.As AutoIt can simulate a Windows user, it is ideal for automated black box testing of Windows programs. Did some of the above answer your question? Ignorance is strength.
azman Posted March 7, 2005 Author Posted March 7, 2005 (edited) I only test blackbox ! Example: I have a dynamic grid(C#) and I can insert data on the grid. Can AU3 simulate this action? Can I get data from a list(ex:Excel) to input (like Quick Test Pro)? It is greate if you give me some ideal! Thanks!!! PS: Can i uses AU3 to test web application such as ASP.NET??? Edited March 7, 2005 by azman
Henrik Posted March 7, 2005 Posted March 7, 2005 If you do blackbox tests, the development platform should not matter. Then again: In older versions of Visual Studio, there are problems related to hidden controls, certain types of control (e.g. Tab controls) and the resource editor sometimes reusing control ID's. That is, control Id's are not necessarily unique in an application, which can make it difficult to know which control you're selecting. I have no idea if this also pertains to .NET. In my own case, this was easily solved by making the app developers ensure that no resource ID occurred more than once in resource.h (it is a VC++ 6.0 program I'm testing). Otherwise, from what I have learned by watching the AutoIT fora, what you propose to do should be possible with AutoIT. Searching the fora should provide you with some how-to's. Sorry for not being more specific, but my own AutoIT scripts consist mainly of ControlClick() and Sleep() statements. Other contibutors to this forum might be able to share their experience on how exactly to do what you wish to do. Ignorance is strength.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now