DocumentCompleted firing multiple times - accepted

2019-02-13 23:05发布

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?

3条回答
你好瞎i
2楼-- · 2019-02-13 23:44

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.
}
查看更多
Luminary・发光体
3楼-- · 2019-02-14 00:01

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.

查看更多
手持菜刀,她持情操
4楼-- · 2019-02-14 00:11

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 }

查看更多
登录 后发表回答