通过Windows应用程序,我想自动使用webcontrol登录网站,我需要搜索和浏览网页..这是我的例如:
在加载事件中
Dim webAddress As String = "http:XXXXXXXx"
' WebControl2.WebView.Url = webAddress
WebControl2.WebView.LoadUrlAndWait(webAddress)
WebControl2.WebView.EvalScript("document.getElementsByName('username')[0].value = 'xxxxxx';")
WebControl2.WebView.EvalScript("document.getElementsByName('password')[0].value = 'yyyyy';")
WebControl2.WebView.EvalScript("document.getElementsByName('username')[0].focus();")
WebControl2.WebView.EvalScript("document.getElementsByName('password')[0].focus();")
WebControl2.WebView.SetFocus()
WebControl2.WebView.EvalScript("document.getElementByInputType('submit')[0].click();")
SendKeys.Send("{TAB}")
SendKeys.Send(ControlChars.Cr)
它工作正常但我无法访问我已经填写的页面