I am designing a program that has the user click a button on a form and it will trigger a click on a website. Below is an example of the button I want to click. I've tried RaiseEvent's, navigates, and other things and have had no luck.
< a href="/product" id="button_test"></a>
Found this what works:
Dim theElementCollection As HtmlElementCollection = _
CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Document.GetElementsByTagName("a")
For Each curElement As HtmlElement In theElementCollection
If curElement.GetAttribute("id").Equals("button_test") Then
curElement.InvokeMember("click")
End If
Next
http://social.msdn.microsoft.com/Forums/eu/vbgeneral/thread/7a001c45-603b-47e0-b3fc-361bc44ea7c4