【发布时间】:2017-06-17 09:24:53
【问题描述】:
所以我有 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;
}`
【问题讨论】:
-
您其他问题的答案中的代码看起来是正确的,它正在枚举所有 chrome 进程(因为 chrome 是多进程),然后抓住窗口句柄。由于多进程的性质,我无法想象一个进程会有多个窗口。当您说“最近的”时,您是指前景中的那个,还是您与之交互的最后一个?
-
最后一个交互的
-
您能告诉我们您当前的代码吗?
-
@mjwills 该网站目前给了我 503 状态码,所以我稍后再试一次并回复您。
标签: c# google-chrome tabs window