Does anybody know a good way to perform a click on a control inside of a webbrowser? Preferably from ID?
Thanks, ALL suggestions are appreciated.
This isn't really for an ID but you can do the same thing with it by using the value button.
Dim allelements As HtmlElementCollection = WebBrowser1.Document.All
For Each webpageelement As HtmlElement In allelements
If webpageelement.GetAttribute("value") = "Log In" Then
webpageelement.InvokeMember("click")
End If
Next