We are using FluentAutomation.SeleniumWebDriver
to drive our integration tests. We configure this as so
public IntegrationTest()
{
SeleniumWebDriver.Bootstrap(SeleniumWebDriver.Browser.Chrome);
}
My question is how do I tell it to run in incognito mode? The problem I have is that the tests will sometimes use cookies that I have been using locally and this can affect tests.