7

I wanted to make an application wherein you specify the name of the websites, your username and password and that application automatically logs in to all your accounts in the specified websites. I have done this using windows form application, using a web browser. But i wanted my application to open all these websites in chrome and log it in there. Plz Help

Ricky
  • 71
  • 1
  • 2
  • 4
    Chrome has a fairly extensive extension API which would probably allow you to do this - why are you writing it as a C# application? – mdm May 28 '11 at 10:41

3 Answers3

3

I'd check out the chrome API failing that Look into getting a handle to the window through window API calls

But why not just a chrome extension?!? Miles simpler

0

Doing a quick Google search for "chrome C# api" turned up a number of results I think you may find relevant.

I thought the following were particularly promising, if you're willing to accept a few concessions:

TernaryTopiary
  • 436
  • 5
  • 17
0

Have a look at Selenium WebDriver

Pawel Pabich
  • 2,404
  • 4
  • 22
  • 33