C#从Chrome的活动标签页获取源代码

时间:2018-08-31 23:56:55

标签: c# google-chrome

这是我的问题: 我想从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);

根据请求,此操作返回“地址和搜索栏”字段,我找不到有关如何获取正文内容的任何信息。

谢谢。

0 个答案:

没有答案