Hello guys i want to click a button who got this ID:
![Name: screenshot_23.png
Views: 64
Size: 7.2 KB]()
But i dont know how to figure it out...
i tryed
Tryed this:
And other codes but it dont work.. anyone can help me ?
But i dont know how to figure it out...
i tryed
Code:
For Each Element As HtmlElement In WebBrowser1.Document.GetElementsByTagName("button")
If Element.OuterHtml.Contains("do_signup") Then
Element.InvokeMember("click")
Exit For
End If
NextCode:
WebBrowser1.Document.All("button").InvokeMember("click")