使用HtmlAgilityPack在C#中捕获屏幕

时间:2014-11-17 11:30:47

标签: c# html-agility-pack

由于缺少适当的文档,我不确定HtmlAgilityPack在加载html内容后是否支持C#中的屏幕捕获。

那么有没有一种方法可以或多或少地使用(或与HtmlAgilityPack一起)抓取屏幕截图,这样我就可以有一个关于每次页面操作时会发生什么的视觉线索?

到目前为止,这是我的工作代码:

using HtmlAgilityPack;
using System;

namespace ConsoleApplication4
{
    class Program
    {
        static void Main(string[] args)
        {
            string urlDemo = "https://htmlagilitypack.codeplex.com/";
            HtmlWeb getHtmlWeb = new HtmlWeb();
            var doc = getHtmlWeb.Load(urlDemo);
            var sentence = doc.DocumentNode.SelectNodes("//p");
            int counter = 1;           
            try
            {
                foreach (var p in sentence)
                {
                    Console.WriteLine(counter + ". " + p.InnerText);
                    counter++;
                }
            }
            catch (Exception e)
            { 
                Console.WriteLine(e);
            }  
            Console.ReadLine();            
        }
    }
}

目前,它在控制台中抓取并输出页面的所有p,但同时我想获取抓取内容的屏幕抓取但我不知道如何以及从何处开始。

非常感谢任何帮助。 TIA

2 个答案:

答案 0 :(得分:4)

您无法使用HTML Agility Pack执行此操作。使用其他工具,例如Selenium WebDriver。以下是如何操作:Take a screenshot with Selenium WebDriver

答案 1 :(得分:4)

您可以使用Selenium WebDriver吗?

您需要首先将以下NuGet包添加到您的项目中:

加载页面并截取屏幕截图就像......

一样简单
using System;
using System.Drawing.Imaging;
using System.IO;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Support.UI;

namespace SeleniumTest
{
    class Program
    {
        static void Main(string[] args)
        {
            // Create a web driver that used Firefox
            var driver = new FirefoxDriver(
                new FirefoxBinary(), new FirefoxProfile(), TimeSpan.FromSeconds(120));

            // Load your page
            driver.Navigate().GoToUrl("http://google.com");

            // Wait until the page has actually loaded
            var wait = new WebDriverWait(driver, new TimeSpan(0, 0, 10));
            wait.Until(d => d.Title.Contains("Google"));

            // Take a screenshot, and saves it to a file (you must have full access rights to the save location).
            var myDesktop = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
            ((ITakesScreenshot)driver).GetScreenshot().SaveAsFile(Path.Combine(myDesktop, "google-screenshot.png"), ImageFormat.Png);

            driver.Close();
        }
    }
}