4

我有一个问题,我找不到解决方案。我的任务是访问 Google Chrome Inspect Element 提供的文本。例如 - 如果给我一个网页“http://stackoverflow.com”,那么我应该得到位于检查元素中的文本(右键单击->检查元素)。有谁知道如何在.NET 中做到这一点?

PS我有一个替代解决方案,但我想最大限度地提高这项任务的有效性。我当前的解决方案是让 .NET 以编程方式打开 Google Chrome,然后使用键盘快捷键访问 Inspect Element 文本。但我想在后台执行此操作(程序在我做其他事情时做所有事情)。

4

1 回答 1

0

您要下载页面源吗?因为这基本上就是检查元素的作用。如果我错了,请告诉我。

string remoteUri = "http://www.contoso.com/library/homepage/images/";
            string fileName = "ms-banner.gif", myStringWebResource = null;
            // Create a new WebClient instance.
            WebClient myWebClient = new WebClient();
            // Concatenate the domain with the Web resource filename.
            myStringWebResource = remoteUri + fileName;
            Console.WriteLine("Downloading File \"{0}\" from \"{1}\" .......\n\n", fileName, myStringWebResource);
            // Download the Web resource and save it into the current filesystem folder.
            myWebClient.DownloadFile(myStringWebResource,fileName);     
            Console.WriteLine("Successfully Downloaded File \"{0}\" from \"{1}\"", fileName, myStringWebResource);
            Console.WriteLine("\nDownloaded file saved in the following file system folder:\n\t" + Application.StartupPath);

不是我的代码,它来自http://msdn.microsoft.com/en-us/library/ez801hhe.aspx?cs-save-lang=1&cs-lang=csharp#code-snippet-2

然后你可以使用任何函数来读取文件并使用源。

于 2013-01-23T17:50:56.817 回答