任何人都知道这是什么问题? 如果我单击button9然后我收到应用程序错误。
Button9代码:
WebBrowser1.Document.GetElementById("email").SetAttribute("Value", Text1.Text)
WebBrowser1.Document.GetElementById("pass").SetAttribute("Value", Text2.Text)
For Each element As HtmlElement In WebBrowser1.Document.GetElementsByTagName("input")
If element.GetAttribute("name") = "login" Then
element.InvokeMember("click")
End If
Next
WaitForPageLoad()
If Me.WebBrowser1.DocumentText.Contains("abc") Then
MsgBox("E-mail címed nem ismerhető fel.")
Else
MsgBox("Bejelentkeztél.")
End If