Guys i am making c# windows application and i want to open any explorer (IE, FireFox, Chrome etc) with a website showing the login page asking me to enter my user name and password.
i am doing.
Process p =new Process();
ProcessStartInfo Sinfo=new ProcessStartInfo();
Sinfo.FileName="chrome.exe" // or Sinfo.Filename="IExplorer.exe";
Sinfo.agruments="www.mail.yahoo.com";
p.startinfo=Sinfo;
p.start();
i am not getting how to send my email/username and password to specific website to login automatically?