Reputation: 5419
I test if my WebBrowser is completed with:
webBrowser2.DocumentCompleted += (s, e) =>
{
// Do stuff
}
The webpage I am accessing as tons of JS files and iframes and stuff, so I use the below function to make sure it's the actual page that's completed loading.
webBrowser2.DocumentCompleted += (s, e) =>
{
if (e.Url.AbsolutePath != (s as WebBrowser).Url.AbsolutePath)
{
return;
}
// Do stuff
}
However, it still doesn't appear to be working. Am I doing something wrong or is this syntactically correct and there's some other error in my code?
Upvotes: 6
Views: 9769
Reputation: 181
I use this (from an answer on SO to a similar question):
void BrowserDocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
if (e.Url.AbsolutePath != (sender as WebBrowser).Url.AbsolutePath)
return;
//The page has finished loading.
}
Upvotes: 8
Reputation: 2122
Just check the e.Url.AbsolutePath is the actual url that you navigated to.
if (e.Url.AbsolutePath == TheActualURLString) { //This your actual page download complete }
Upvotes: 1
Reputation: 61726
DocumentComplete
may get fired multiple times for many reasons (frames, ajax, etc). At the same time, for a particular document, window.onload
event will be fired only once. So, perhaps, you can do your processing upon window.onload
. I just answered a related question on how that can be done.
Upvotes: 5