I\'d like to listen to traffic generated by phantomjs selenium driver in c#. The below code does not work unfortunately!
PhantomJSOptions phoptions = new Ph
Proxy proxy = new Proxy(); proxy.HttpProxy = string.Format("127.0.0.1:9999"); var service = PhantomJSDriverService.CreateDefaultService(); service.ProxyType = "http"; service.Proxy = proxy.HttpProxy; IWebDriver driver = new PhantomJSDriver(service);
Some quick testing showed this work for me.