c#webbrowser控件不会导航到另一个页面

ism*_*der 5 c# webbrowser-control navigateurl

我有一个控制台应用程序,我已经在其中定义了一个webbrowser.首先,我导航到一个页面并填写登录表单并调用提交按钮进行登录.

之后,我想使用相同的webbrowser转到同一站点中的另一个页面,但它不会导航到该页面.相反,它导航到登录后重定向的页面.

这是我的澄清代码; 这段代码给了我www.websiteiwanttogo.com/default.aspx的源代码而不是product.aspx这里有什么问题?

static WebBrowser wb = new WebBrowser();

    [STAThread]
    static void Main(string[] args)
    {
        wb.AllowNavigation = true;
        wb.Navigate("https://www.thewebsiteiwanttogo.com/login.aspx");
        wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(wb_DocumentCompleted);
        Application.Run();


    }

    static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    {
        if (wb.Url.ToString().IndexOf("login.aspx") > -1)
        {
            wb.Document.GetElementById("txtnumber").SetAttribute("value", "000001");
            wb.Document.GetElementById("txtUserName").SetAttribute("value", "myusername");
            wb.Document.GetElementById("txtPassword").SetAttribute("value", "mypassword");
            wb.Document.GetElementById("btnLogin").InvokeMember("click");


        }
        else
        {
            //wb.Document.Body  you are logged in do whatever you want here.
            wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");

            Console.WriteLine(wb.DocumentText);
            Console.ReadLine();
            Application.Exit();

        }
    }
Run Code Online (Sandbox Code Playgroud)

Ben*_*and 5

有很多不同的方法可以完成此功能。但是,我的猜测是:

  1. 导航到下一页的调用发生得太快,或者
  2. Document.Completed事件是不是在登录后正确触发(这是常见的,特别是如果目标文件包含动态脚本)

我已经完成了许多网页自动化(从链接导航到链接,然后执行一些操作,然后导航到另一个链接等),并且您应该考虑使用异步过程。原则上,处理webBrowser对象以使用异步进程可能总是最好的,这仅仅是因为在许多实例中,您需要一个进程在执行其他功能时运行。

无需赘述,请查看此问题的答案并研究代码:WebBrowser导航和InvokeScript的流程

但是,在尝试实现之前,您可以简单地尝试在尝试导航到页面之前添加异步等待。(异步等待类似于Thread.Sleep(),但实际上并不会停止页面的加载,即“线程”)。

(以前从未听说过异步过程吗?请在MSDN上查看本教程)。

首先尝试:

static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    if (wb.Url.ToString().IndexOf("login.aspx") > -1)
    {
        wb.Document.GetElementById("txtnumber").SetAttribute("value", "000001");
        wb.Document.GetElementById("txtUserName").SetAttribute("value", "myusername");
        wb.Document.GetElementById("txtPassword").SetAttribute("value", "mypassword");
        wb.Document.GetElementById("btnLogin").InvokeMember("click");


    }
    else
    {
        //wb.Document.Body  you are logged in do whatever you want here.
        await Task.Delay(1000); //wait for 1 second just to let the WB catch up
        wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");

        Console.WriteLine(wb.DocumentText);
        Console.ReadLine();
        Application.Exit();

    }
}
Run Code Online (Sandbox Code Playgroud)

如果这样做没有帮助,请考虑上面的链接,然后尝试使用异步过程实现更强大的导航序列。

如果这不起作用,并且您希望获得一些导航或等待动态页面加载的帮助,请尝试以下文章:如何使用.NET的WebBrowser或mshtml.HTMLDocument动态生成HTML代码? 我已经多次使用此代码神学,并且效果很好。

希望这些方法之一可以帮助您!让我知道,我可以帮助您生成一些更具体的代码段。

编辑:

乍一看,我将猜测Console.ReadLine()将会冻结的导航wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");,因为它不会立即发生。您可能需要ifDocument.Completed处理程序中添加另一个语句,以允许wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");在尝试获取之前完成导航wb.DocumentText。例如:

static void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    if (wb.Url.ToString().IndexOf("login.aspx") > -1)
    {
        wb.Document.GetElementById("txtnumber").SetAttribute("value", "000001");
        wb.Document.GetElementById("txtUserName").SetAttribute("value", "myusername");
        wb.Document.GetElementById("txtPassword").SetAttribute("value", "mypassword");
        wb.Document.GetElementById("btnLogin").InvokeMember("click");
    }
    else if(wb.Url.ToString().IndexOf("product.aspx") > -1)
    {
        Console.WriteLine(wb.DocumentText);
        Console.ReadLine();
        Application.Exit();
    }
    else
    {
        //wb.Document.Body  you are logged in do whatever you want here.
        await Task.Delay(1000); //wait for 1 second just to let the WB catch up
        wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");
    }
}
Run Code Online (Sandbox Code Playgroud)

  • 好的,我解决了。我禁用了 [This question](http://stackoverflow.com/questions/2476360/disable-javascript-error-in-webbrowser-control) 中所述的脚本错误。我会将您的答案标记为解决方案。非常感谢! (2认同)