How to start browser in incognito window with Java-Cucumber?

Is there a way to start browser in incognito window with Java Cucumber?

Hi Mark,

To start the browser incognito window, you can pass the following capabilities below:

DesiredCapabilities capabilities = DesiredCapabilities.chrome();
ChromeOptions options = new ChromeOptions();
options.addArguments("incognito");
capabilities.setCapability(ChromeOptions.CAPABILITY, options);