I’m automating form login in a certain site using the WebBrowser control. Having the client id of the textbox, password and button login, I’m able to do it.
The question is, can I still do it without identifying the id of the button and simulate a click?
There is no way you could do this without being able to identify the controls somehow. You would need the ids, or you would need to be told exactly where in the DOM they were located by some other means.