我正在使用包含特定clientID和密码的网址来执行webBrowser.navigate请求。之后,它将我带到页面,我需要再次填写一些ID和密码。然后它会将我重定向到一个新页面,我将在查询字符串中获取身份验证代码。
现在我遇到了很多问题。
webBrowser1.Navigate(url)
Dim elementLogin = webBrowser1.Document.GetElementById("login_identifier")
If Not IsNothing(elementLogin) Then
webBrowser1.Document.GetElementById("login_identifier").SetAttribute("Value", user_email)
End If
Dim elementPassword = webBrowser1.Document.GetElementById("login_password")
If Not IsNothing(elementLogin) Then
webBrowser1.Document.GetElementById("login_password").SetAttribute("Value", password)
End If
webBrowser1.Document.GetElementById("login_btn").InvokeMember("click")
webBrowser1.Document什么都没有让我生气。任何人都可以建议我任何其他过程来自动化这个...或者如果我在正确的轨道上可能会帮助我。感谢