C# 如何在多个窗口中从 chrome 获取选项卡?

use*_*072 2 c# tabs google-chrome window

所以我有从 Chrome 窗口中提取所有选项卡的代码。

但是,如果我打开了多个窗口,则只能识别最近的一个窗口。

是否可以从多个窗口中提取选项卡,而不仅仅是最近的一个?

编辑:我使用并需要修复的代码:

public List<string> ChromeTabs()
    {
        List<string> ret = new List<string>();

        Process[] procsChrome = Process.GetProcessesByName("chrome");

        if (procsChrome.Length <= 0)
        {
            Console.WriteLine("Chrome is not running");
        }
        else
        {
            foreach (Process proc in procsChrome)
            {
                // the chrome process must have a window 

                if (proc.MainWindowHandle == IntPtr.Zero)
                {
                    continue;
                }

                // to find the tabs we first need to locate something reliable - the 'New Tab' button 
                AutomationElement root = AutomationElement.FromHandle(proc.MainWindowHandle);
                Condition condNewTab = new PropertyCondition(AutomationElement.NameProperty, "New Tab");
                AutomationElement elmNewTab = root.FindFirst(TreeScope.Descendants, condNewTab);

                // get the tabstrip by getting the parent of the 'new tab' button 
                TreeWalker treewalker = TreeWalker.ControlViewWalker;
                AutomationElement elmTabStrip = treewalker.GetParent(elmNewTab); // <- Error on this line

                // loop through all the tabs and get the names which is the page title 
                Condition condTabItem = new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.TabItem);
                foreach (AutomationElement tabitem in elmTabStrip.FindAll(TreeScope.Children, condTabItem))
                {
                    ret.Add(tabitem.Current.Name);
                    //Console.WriteLine(tabitem.Current.Name);
                }
                continue;
            }
        }
        return ret;
    }`
Run Code Online (Sandbox Code Playgroud)

mec*_*ier 9

我还遇到了这个问题,只有最近使用的 Google Chrome 窗口返回非零值,MainWindowHandle这反过来又阻止我从其他 Google Chrome 窗口获取选项卡信息。

我最终解决了这个问题,通过枚举桌面窗口并找到Handle每个 Google Chrome 进程,这些进程遵守我发现(通过数小时的调试)可靠地返回浏览器窗口的一组规则。

我能够将Handles桌面窗口枚举期间的发现传递给AutomationElement用于获取所有正在运行的 Google Chrome 窗口的选项卡信息的典型方法。

delegate bool EnumWindowsProc(IntPtr hWnd, int lParam);

[DllImport("user32.dll")]
private static extern bool EnumDesktopWindows(IntPtr hDesktop, EnumWindowsProc ewp, int lParam);

[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern bool GetClassName(IntPtr hWnd, StringBuilder lpClassName, int nMaxCount);

[DllImport("user32.dll")]
private static extern uint GetWindowText(IntPtr hWnd, StringBuilder lpString, uint nMaxCount);

[DllImport("user32.dll")]
private static extern uint GetWindowTextLength(IntPtr hWnd);

[DllImport("user32.dll")]
static extern uint GetWindowThreadProcessId(IntPtr hWnd, out uint lpdwProcessId);

// get all the process id's of the running chrome processes
Process[] chromeProcesses = Process.GetProcessesByName("chrome");
List<uint> chromeProcessIds = chromeProcesses.Select(x => (uint)x.Id).ToList();

// a list to store the handles of the Google Chrome windows that we'll find
List<IntPtr> windowHandles = new List<IntPtr>();

EnumWindowsProc enumerateHandle = delegate (IntPtr hWnd, int lParam)
{
    // get the id of the process of the window we are enumerating over
    uint id;
    GetWindowThreadProcessId(hWnd, out id);

    // if the process we're enumerating over has an id in our chrome process ids, we need to inspect it to see if it is a window or other process
    if (chromeProcessIds.Contains(id))
    {
        // get the name of the class of the window we are inspecting
        var clsName = new StringBuilder(256);
        var hasClass = GetClassName(hWnd, clsName, 256);
        if (hasClass)
        {
            // get the text of the window we are inspecting
            var maxLength = (int)GetWindowTextLength(hWnd);
            var builder = new StringBuilder(maxLength + 1);
            GetWindowText(hWnd, builder, (uint)builder.Capacity);

            var text = builder.ToString();
            var className = clsName.ToString();

            // actual Google Chrome windows have text set to the title of the active tab
            // in my testing, this needs to be coupled with the class name equaling "Chrome_WidgetWin_1". 
            // i haven't tested this with other versions of Google Chrome
            if (!string.IsNullOrWhiteSpace(text) && className.Equals("Chrome_WidgetWin_1", StringComparison.OrdinalIgnoreCase))
            {
                // if we satisfy the conditions, this is a Google Chrome window. Add the handle to the list of handles to use later.
                windowHandles.Add(hWnd);
            }
        }
    }
    return true;
};

EnumDesktopWindows(IntPtr.Zero, enumerateHandle, 0);

foreach (IntPtr ptr in windowHandles)
{
    AutomationElement root = AutomationElement.FromHandle(ptr);
   
    // continue grabbing Chrome tab information using the AutomationElement method
    ...
}
Run Code Online (Sandbox Code Playgroud)