I am trying to make a program to automatically login to my website it will do this by loading a WebBrowser and navigating to the login page of my site then I want it to edit the value of the username and password box.
I just do not know how to do this in Delphi. I have a working version of this program made in VB and the command is...
WebBrowser1.Document.All("username").Value = "Username Here"
But that will not work in Delphi.
I hope someone can help me with this.