1

我一直在控制台项目上开发基于 C# 的 Web 浏览器相关程序。现在,这是一段在Windows 窗体应用程序中运行的代码,但在控制台应用程序中它向我显示'Object reference not set to an instance of an object'。到目前为止,通过调试,通过 elementId 将HTMLElementCollection中的所有内容转换为var,它显示为 False,这意味着 HTML 中没有这样的 id。现在,这段代码没有错,因为相同的代码在 Windows 窗体应用程序中运行良好。我希望你明白。对此有一点帮助将不胜感激!谢谢。

下面提供了一段代码:

if (browser.ReadyState == WebBrowserReadyState.Complete)
{
    //Putting the values inside the boxes
    browser.Document.GetElementById("project_title").SetAttribute("value", projectTitle);
    browser.Document.GetElementById("article_title").SetAttribute("value", title);
    browser.Document.GetElementById("article_content").SetAttribute("value", content);
    browser.Document.GetElementById("article_tags").SetAttribute("value", tags);
    browser.Document.GetElementById("article_url_1").SetAttribute("value", url);
    browser.Document.GetElementById("article_keyword_1").SetAttribute("value", keywords);
    browser.Document.GetElementById("article_url_2").SetAttribute("value", url2);
    browser.Document.GetElementById("article_keyword_2").SetAttribute("value", keywords2);
    browser.Document.GetElementById("article_url_3").SetAttribute("value", url3);
    browser.Document.GetElementById("article_keyword_3").SetAttribute("value", keywords3);

    HtmlElementCollection lastElementCollection = browser.Document.All;
    foreach (HtmlElement webpageelement in lastElementCollection)
    {
        if (webpageelement.GetAttribute("value").Contains("Submit"))
            webpageelement.InvokeMember("click");
    }

    Console.WriteLine("Please wait for 5 second(s).");
    Thread.Sleep(5000);
    Console.WriteLine("Post has been submitted successfully!");
}
4

2 回答 2

1

您确定浏览器对象已加载正确的内容吗?首先检查 browser.Document 元素的 innerHtml。(虽然调试可能是?)

于 2012-10-09T12:12:49.897 回答
0

你可以试试这个:

只需在代码片段的第一个 IF 语句之前放置一个等待序列;像这样:

while (browser.ReadyState != WebBrowserReadyState.Complete)
{  
  Application.DoEvents();
}

if (browser.ReadyState == WebBrowserReadyState.Complete)
{
...

更新:您是否使用 DocumentCompleted 事件?检查 WebBrowserDocumentCompletedEventArgs 的 url 属性与您请求的 url 是否相同。因为 documentcompleted 会针对您的 Web 请求中的所有文件(如 js 和 css 文件)触发。

于 2012-10-09T12:31:32.297 回答