2

我正在使用 firefox12并下载firebug-1.9.0.xpi& netExport-0.5.xpi,但未创建 har 文件。可以做的任何改变。程序代码:

   class Program 
   {
    public IWebDriver webDriver;
    public InternetExplorerDriver IEDriver;
    static void Main(string[] args)
    {
        {
            FirefoxProfile profile = new FirefoxProfile();
            IWebDriver webDriver = new FirefoxDriver();
            try
            {
                profile.AddExtension(@"D:\LoadTesting\firebug-1.9.0.xpi");
                profile.AddExtension(@"D:\LoadTesting\netExport-0.5.xpi");
            }
            catch (IOException err)
            {

            }
            profile.SetPreference("app.update.enabled", false);
            String domain = "extensions.firebug.";
            string output_dir =
        Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
            output_dir = Path.Combine(output_dir, "Firebugnetexports");
            if (!Directory.Exists(output_dir))
            {
                Directory.CreateDirectory(output_dir);
            }

            profile.SetPreference(domain + "currentVersion", "1.8.2");
            profile.SetPreference(domain + "allPagesActivation", "on");
            profile.SetPreference(domain + "defaultPanelName", "net");
            profile.SetPreference(domain + "net.enableSites", true);
            profile.SetPreference(domain + "netexport.alwaysEnableAutoExport", true);
            profile.SetPreference(domain + "netexport.showPreview", false);
            profile.SetPreference(domain + "netexport.defaultLogDir", output_dir);
            try
            {

                webDriver.Navigate().GoToUrl("http://www.janodvarko.cz");
            }
            catch (Exception ex)
            {

            }
            webDriver.Quit();

        }

    }
}
4

1 回答 1

2

您最好的选择可能是将Browsermob 代理与 Selenium 结合使用。它将允许您在没有插件的情况下运行 Firefox,并输出 har 文件。该项目有 Selenium 的创建者和其他一些知名人物。Github 项目有一个示例,它显示了如何创建 Har 文件,您可以从那里编写自己的代码来处理它并确保满足您的性能指标,或者您包含的 javascript / css 已定位,将其写入磁盘等...

于 2012-07-30T13:28:43.923 回答