c# webbrowser 控件不导航到另一个页面
c# webbrowser control does not navigate to another page
我有一个控制台应用程序,我在其中定义了一个网络浏览器。
首先,我导航到一个页面并填写登录表单并调用提交按钮登录。
在那之后,我想使用同一个网络浏览器转到同一站点中的另一个页面,但它没有导航到该页面。相反,它导航到登录后重定向的页面。
这是我的代码以供澄清;此代码为我提供了 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();
}
}
有很多不同的方法可以实现此功能。但是,我的猜测是:
- 导航到下一页的调用发生得太快,或者
- 登录后
Document.Completed
事件未正确触发(这很常见,尤其是当目标文档包含动态脚本时)
我做了很多网页自动化(从 link 导航到 link,然后执行一些操作,然后导航到另一个 link,等等),以及您应该考虑使用异步进程。原则上,在处理 webBrowser
对象时使用异步进程可能总是最好的,因为在许多情况下,您需要一个进程来 运行 而您执行其他功能。
不细说了,看这个问题的答案,研究代码:Flow of WebBrowser Navigate and InvokeScript
然而,在尝试该实现之前,您可以在尝试导航到页面之前简单地尝试添加异步等待。 (async await 类似于 Thread.Sleep()
,但实际上并不停止页面加载,即 "thread")。
(以前从未听说过异步进程?查看 this tutorial on 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();
}
}
如果这没有帮助,请考虑 the link above 并尝试使用异步进程实现更强大的导航序列。
如果这不起作用,并且您需要一些帮助来浏览或等待动态页面加载,请试试这个 post:how to dynamically generate HTML code using .NET's WebBrowser or mshtml.HTMLDocument?
这个代码神学我用过很多次,效果很好
希望其中一种方法对您有所帮助!让我知道,我可以帮助您生成一些更具体的代码片段。
编辑:
乍一看,我猜 Console.ReadLine()
会冻结 wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");
的导航,因为它不会立即发生。您可能希望在 Document.Completed
处理程序中添加另一个 if
语句,以允许 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");
}
}
我有一个控制台应用程序,我在其中定义了一个网络浏览器。 首先,我导航到一个页面并填写登录表单并调用提交按钮登录。
在那之后,我想使用同一个网络浏览器转到同一站点中的另一个页面,但它没有导航到该页面。相反,它导航到登录后重定向的页面。
这是我的代码以供澄清;此代码为我提供了 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();
}
}
有很多不同的方法可以实现此功能。但是,我的猜测是:
- 导航到下一页的调用发生得太快,或者
- 登录后
Document.Completed
事件未正确触发(这很常见,尤其是当目标文档包含动态脚本时)
我做了很多网页自动化(从 link 导航到 link,然后执行一些操作,然后导航到另一个 link,等等),以及您应该考虑使用异步进程。原则上,在处理 webBrowser
对象时使用异步进程可能总是最好的,因为在许多情况下,您需要一个进程来 运行 而您执行其他功能。
不细说了,看这个问题的答案,研究代码:Flow of WebBrowser Navigate and InvokeScript
然而,在尝试该实现之前,您可以在尝试导航到页面之前简单地尝试添加异步等待。 (async await 类似于 Thread.Sleep()
,但实际上并不停止页面加载,即 "thread")。
(以前从未听说过异步进程?查看 this tutorial on 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();
}
}
如果这没有帮助,请考虑 the link above 并尝试使用异步进程实现更强大的导航序列。
如果这不起作用,并且您需要一些帮助来浏览或等待动态页面加载,请试试这个 post:how to dynamically generate HTML code using .NET's WebBrowser or mshtml.HTMLDocument? 这个代码神学我用过很多次,效果很好
希望其中一种方法对您有所帮助!让我知道,我可以帮助您生成一些更具体的代码片段。
编辑:
乍一看,我猜 Console.ReadLine()
会冻结 wb.Navigate("https://www.thewebsiteiwanttogo.com/product.aspx");
的导航,因为它不会立即发生。您可能希望在 Document.Completed
处理程序中添加另一个 if
语句,以允许 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");
}
}