I currently have the code below to invoke a click on an button on a webpage that's loaded inside a webbrowser on my form. The user of the application can click a button on my form & it will invoke a click in the webpage.
I'm trying to convert the code below to work with windows mobile 7 VB.net However, I'm getting all sorts of errors having to do with HTMLElementCollection & getElementsByTagName. If anyone knows how to successfully invoke a click on windows phone
Private Sub Button1_Click(sender As System.Object, e As System.Windows.RoutedEventArgs) Handles Button1.Click
Dim col As HTMLElementCollection = WebBrowser1.GetElementsByTagName("div")
For Each elem As HTMLElement In col
If elem.GetAttribute("classname").Contains("Buttn") Then
elem.InvokeMember("click")
End If
Next
End Sub