Currently we are working on selenium (2.53.0) with Edge browser using C#. Edge browser stores cache information at \'localAppdata\' folder because of cache, we are facing some
if you want to open Edge in Private (Incognito) mode, you can use this C# code:
EdgeOptions options = new EdgeOptions(); options.AddAdditionalCapability("InPrivate", true); this.edgeDriver = new EdgeDriver(options);