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
Asked
Active
Viewed 9,122 times
7
-
4Chrome 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 Answers
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:
- Automating Chrome Browser from C#
- ChromeDevTools; a C# Library to interact with Chrome's Developer Tools
- Chrome Debugging API

TernaryTopiary
- 436
- 5
- 17
0
Have a look at Selenium WebDriver

Pawel Pabich
- 2,404
- 4
- 22
- 33
-
11You should elaborate as to why this is a good option, instead of just posting a link. – slugster May 28 '11 at 07:51
-