I want to know how could I write a program in C# that opens a browser and go to google.com (I did that easily)

I want to write code to automate move mouse to the input text field, click the mouse and then enter some text. move mouse to search button and hit it.

I know I should deal with iAccessible interface but I did not find any useful source.

Any help will be appreciated.

link|improve this question

20% accept rate
Why would you do it that way instead of just Process.Start("url")? Can't think of any reason besides 'because I can' ;-) – Jouke van der Maas Jul 2 '10 at 22:49
I want to do it this way because I have a big project that I should learn how to automate every thing, to start working in it – Mohammad Abdelaziz Jul 2 '10 at 22:52
feedback

6 Answers

All the stuff you're describing is possible with Watin. It doesn't do it via mouse moves, but by interacting directly with the browser at an API level. It supports Internet Explorer and Firefox.

link|improve this answer
Watin (and Watir before it) are both awesome for browser automation. Can't +1 enough. – µBio Jul 2 '10 at 23:17
Actually I want a lower level than this. I found more than one library, but I want to know how does these libraries deal with ui Accessible interface that all ui elements should be implementing. – Mohammad Abdelaziz Jul 2 '10 at 23:43
feedback

Look at the Windows Automation API: http://msdn.microsoft.com/en-us/library/ms726294(VS.85).aspx

and the Test API: testapi.codeplex.com which has some related packages you'll likely need. Sorry, can't post more than one link yet, but add the usual bits to get to the TestAPI site on codeplex.

link|improve this answer
feedback

If you're looking to understand UI Automation, I've just started that myself. I wrote this project so that other people could use it or understand themselves too:

http://code.google.com/p/wipflash/

Mostly it's based around the Patterns and Properties. You can see how I've used the Patterns here:

http://code.google.com/p/wipflash/source/browse/#hg/WiPFlash/Framework/Patterns

Hope it helps.

(Edit: I also answered a similar question here: http://stackoverflow.com/questions/2920593/3037463#3037463 - you're probably looking for the ValuePattern).

link|improve this answer
feedback

MSHTML combined with WinAPI.

link|improve this answer
feedback

There is a commercial solution that would do the job: Telerik WebUI Test Studio. It also supports Silverlight apps.

http://www.telerik.com/automated-testing-tools.aspx

Here is one positive review:

http://fczaja.blogspot.com/2011/01/ui-tests-automation-for-silverlight.html

link|improve this answer
feedback

You can try Visual Studio Test Suite it lets you record how you interact with your application and then lets you run it automaticly.

It's a powerful product.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.