gpt4 book ai didi

.net - 需要拍摄事件 chrome 窗口的全页快照

转载 作者:行者123 更新时间:2023-12-03 04:52:34 25 4
gpt4 key购买 nike

单击 WPF 应用程序中的按钮时,我需要拍摄事件 chrome 窗口的全页快照我使用了下面的代码。但它只给出事件窗口的 url。

Process[] procsChrome = Process.GetProcessesByName("chrome");
foreach (Process chrome in procsChrome)
{
// the chrome process must have a window
if (chrome.MainWindowHandle == IntPtr.Zero)
{
continue;
}

// find the automation element
AutomationElement elm = AutomationElement.FromHandle(chrome.MainWindowHandle);
AutomationElement elmUrlBar = elm.FindFirst(TreeScope.Descendants,
new PropertyCondition(AutomationElement.NameProperty, "Address and search bar"));

// if it can be found, get the value from the URL bar
if (elmUrlBar != null)
{
AutomationPattern[] patterns = elmUrlBar.GetSupportedPatterns();
if (patterns.Length > 0)
{
ValuePattern val = ValuePattern)elmUrlBar.GetCurrentPattern(patterns[0]);

Console.WriteLine("Chrome URL found: " + val.Current.Value);
}
}
}

我需要在 Chrome 中捕获完整的网页。

最佳答案

我无法使用其 FindAll 方法找到所有 _AutomationElement_。不管怎样,这可能对你有帮助:

        Process[] procsChrome = Process.GetProcessesByName("chrome");
foreach (Process chrome in procsChrome)
{
if (chrome.MainWindowHandle == IntPtr.Zero)
continue;

AutomationElement rootElement = AutomationElement.FromHandle(chrome.MainWindowHandle);
foreach (AutomationElement v in FindInRawView(rootElement))
{
Console.WriteLine(GetText(v));
}
AutomationElement elmUrlBar = rootElement.FindFirst(TreeScope.Descendants,
new PropertyCondition(AutomationElement.NameProperty, "Address and search bar"));
}

其中this answer使用:

 public static IEnumerable<AutomationElement> FindInRawView(AutomationElement root)
{
TreeWalker rawViewWalker = TreeWalker.RawViewWalker;
Queue<AutomationElement> queue = new Queue<AutomationElement>();
queue.Enqueue(root);
while (queue.Count > 0)
{
var element = queue.Dequeue();
yield return element;

var sibling = rawViewWalker.GetNextSibling(element);
if (sibling != null)
{
queue.Enqueue(sibling);
}

var child = rawViewWalker.GetFirstChild(element);
if (child != null)
{
queue.Enqueue(child);
}
}
}

this answer :

   public static string GetText(AutomationElement element)
{
object patternObj;
if (element.TryGetCurrentPattern(ValuePattern.Pattern, out patternObj))
{
var valuePattern = (ValuePattern)patternObj;
return valuePattern.Current.Value;
}
else if (element.TryGetCurrentPattern(TextPattern.Pattern, out patternObj))
{
var textPattern = (TextPattern)patternObj;
return textPattern.DocumentRange.GetText(-1).TrimEnd('\r'); // often there is an extra '\r' hanging off the end.
}
else
{
return element.Current.Name;
}
}

关于.net - 需要拍摄事件 chrome 窗口的全页快照,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42197242/

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