認証の入力名とその値に基づいて Web サイトへのログオンを自動化し、「ログイン」ボタンをクリックする方法があります。ログインしたら、その認証が必要なページに移動したいと考えています。以下のようにこの実装を試しました:
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";
}
"http://facebook.com/messages"
私の問題は、認証が完了する前にURLが設定されていることです。別の URL に移動する前に、認証が完了するまで待つ方法はありますか? ありがとう。