这是我的问题: 我想从C#应用程序中获取chrome或任何其他浏览器中已经打开的网页的源代码(无法更改)。它既不能来自其他语言,也不能来自未打开的网页。
我已经尝试了一些东西:
var SearchBar = root.FindFirst(TreeScope.Descendants, new PropertyCondition(AutomationElement.NameProperty, "Address and search bar"));
if (SearchBar != null)
return (string)SearchBar.GetCurrentPropertyValue(ValuePatternIdentifiers.ValueProperty);
根据请求,此操作返回“地址和搜索栏”字段,我找不到有关如何获取正文内容的任何信息。
谢谢。