Ошибка компиляции Watin и HttpWatch? - PullRequest
0 голосов
/ 24 июля 2011

Я пытаюсь заставить работать следующий код с использованием Watin и HttpWatch.

Я получаю ошибку компиляции 'Не удалось найти тип или namesapce' IEBrowser '(отсутствует директива using или ссылка на сборку?)

У меня есть ссылки на HttpWatch, Interop.SHDocVw, WatiN.Core и Microsoft.mshtml. Я не уверен, что еще не так?

Код ниже - то, что я использую и взято из http://blog.httpwatch.com/2008/10/30/using-httpwatch-with-watin/

Мне действительно нужно, чтобы Watin и HttpWatch работали вместе в одном проекте, чтобы я мог отслеживать производительность сервера.

Спасибо!

using System;
using System.Collections.Generic;
using System.Text;
using WatiN.Core;

namespace WatiN
{
    class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
            // Open a new Internet Explorer window and
            // goto the google website.
            IE ie = new IE("http://www.google.com");

            // Attach HttpWatch to this new instance of IE
            HttpWatch.Controller ct = new HttpWatch.Controller();

            // the below line was supposedly for Watin 1.3
            //HttpWatch.Plugin plugin = ct.IE.Attach((SHDocVw.IWebBrowser2)ie.InternetExplorer);

            // the below line is for Watin 2.x
            HttpWatch.Plugin plugin = ct.IE.Attach((IEBrowser)ie.NativeBrowser).WebBrowser;

            // Start recording a log file in HttpWatch
            plugin.Record();

            // Find the search text field and type Watin in it.
            ie.TextField(Find.ByName("q")).TypeText("WatiN");

            // Click the Google search button.
            ie.Button(Find.ByValue("Google Search")).Click();
            ie.WaitForComplete();

            // Stop recording and save an HttpWatch log file
            plugin.Stop();
            plugin.Log.Save(@"c:\mydir\googlesearch.hwl");

            HttpWatch.Summary logSummary = plugin.Log.Entries.Summary;

            Console.WriteLine("\r\nElapsed time (secs) = " + logSummary.Time.ToString() +
                              " Downloaded bytes = " + logSummary.BytesReceived.ToString());

            // Uncomment the following line if you want to close
            // Internet Explorer and the console window immediately.
            //ie.Close();
        }
    }
}

1 Ответ

1 голос
/ 26 июня 2012

HttpWatch теперь поставляется с примером программы, показывающей, как использовать WatiN 2.1 с HttpWatch:

http://blog.httpwatch.com/2012/06/25/using-httpwatch-and-watin-2-1/

...