简体   繁体   中英

How to handle multiple tabs in internet explorer with the IWebBrowserApp com interface?

I am using the following code (C#) based on the IWebBrowserApp com interface to find the Internet explorer window that matches the page I am trying to find, based on the title of the page.

I works fine if the page is on the first tab, but it does not work if its a later tab. So how do I get access to the tabs in internet explorer?

              objSW = new ShellWindows();

             IEnumerator ie = objSW.GetEnumerator();

            while (ie.MoveNext())

            {

                obj = ie.Current;

                 app = (IWebBrowserApp)ie.Current;
                    System.Object docObj = app.Document;

                    HTMLDocumentClass hdoc = (HTMLDocumentClass)docObj;

                    if (hdoc.title.Contains(title)) matches.Add(app.HWND, app);
                              //do something

}

抱歉,IE9或更早版本中的选项卡枚举/操作没有受支持的API。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM