我正在尝试在 C#中使用BrowserMob Proxy
with 。Selenium
我在这里尝试过这个解决方案:http: //www.adathedev.co.uk/2012/02/automating-web-performance-stats.html
我的代码如下所示:
Server server = new Server(@"path_to\\browsermob-proxy.bat");
server.Start();
Client client = server.CreateProxy();
client.NewHar("test");
var seleniumProxy = new Proxy { HttpProxy = client.SeleniumProxy };
var profile = new FirefoxProfile();
profile.SetProxyPreferences(seleniumProxy);
IWebDriver driver = new FirefoxDriver(profile);
当我运行测试时,我收到以下错误:
System.Net.WebException:远程服务器返回错误:(404)未找到。
它在第三行失败。
关于如何使它工作的任何建议?