This repository was archived by the owner on Jul 9, 2023. It is now read-only.

Description
Hello
I have webdriver auto tests and i using TitaniumProxy.
Without Titanium my tests finish in ~2 minutes
With 3.0.213 ~2 minutes
3.0.503 ~4 minutes
3.0.632 - ~14 minutes
I try to remove all proxy events and leave just startup constructor but this doesnt make changes.
_proxyServer = new ProxyServer(); _proxyServer.CertificateManager.TrustRootCertificate(true); _proxyServer.CertificateManager.SaveFakeCertificates = false; RequestHistory = new List<CustomUserData>(); ResponseHistory= new List<CustomUserData>();
public void InitServer() { _explicitEndPoint = new ExplicitProxyEndPoint(System.Net.IPAddress.Any, 18882); _proxyServer.AddEndPoint(_explicitEndPoint); _proxyServer.Start(); _proxyServer.SetAsSystemProxy(_explicitEndPoint, ProxyProtocolType.AllHttp); }