I have this problem, currently the code runs fine as long as the html element has an ID, the thing is that the text box that I want to put the data has no ID, it only has class.
Code that works if you only have id:
WebBrowser1.Document.GetElementById("username").SetAttribute("value", User_abaol.Text)
Element where I want to insert data.
< input class="login" value="texto a insetar"/ >
How can I insert it if the html text box does not have an ID.