我有一种方法可以根据身份验证的输入名称、它们的值自动登录到网站,然后单击“登录”按钮。登录后,我想导航到需要该身份验证的页面。我已经尝试过这个实现,如下所示:
private void authenticateWebpage(string username, string userValue, string password, string passwordValue, string submitButton)
{
mshtml.IHTMLDocument2 doc = ((mshtml.HTMLDocumentClass)webPage.Document);
((mshtml.IHTMLElement)doc.all.item(username)).setAttribute("value", userValue);
((mshtml.IHTMLElement)doc.all.item(password)).setAttribute("value", passwordValue);
((mshtml.HTMLInputElement)doc.all.item(submitButton)).click();
doc.url = "http://facebook.com/messages";
}
我的问题是 URL 被设置为在身份验证完成之前转到"http://facebook.com/messages"
。有没有办法可以等到身份验证完成后再导航到其他网址?谢谢。