Can someone show me a working example of how this world be achieved? I'm specifically interested in cookie data.
I've done the following, and not sure how to proceed next:
var sessions = new List<Fiddler.Session>();
Fiddler.FiddlerApplication.AfterSessionComplete += delegate(Fiddler.Session oS)
{
Monitor.Enter(sessions);
sessions.Add(oS);
Monitor.Exit(sessions);
};
Fiddler.FiddlerApplication.Startup(8877, FiddlerCoreStartupFlags.Default);
var driver = new OpenQA.Selenium.Firefox.FirefoxDriver();
var selenium = new Selenium.WebDriverBackedSelenium(driver, 'http://www.test.com');
selenium.Start();
selenium.Open(urlRoot.ToString());
selenium.WaitForPageToLoad("30000");
selenium.Stop();
you might want to try the captureNetworkTraffic command or use a browsermob proxy to capture the traffic.