gpt4 book ai didi

C# 如何在多个窗口中从 chrome 获取标签?

转载 作者:行者123 更新时间:2023-12-05 09:18:24 28 4
gpt4 key购买 nike

所以我有 code从 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;
}`

最佳答案

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

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

我能够将在桌面窗口枚举期间找到的 Handles 传递给典型的 AutomationElement 方法,用于获取正在运行的 all 选项卡信息谷歌浏览器窗口。

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
...
}

关于C# 如何在多个窗口中从 chrome 获取标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44602890/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com