How to start browser in incognito window using NightwatchJS?

How to start browser in incognito window using NightwatchJS?

Hey Miro,

In Chrome you can try using incognito command line switch in options;

ChromeOptions options = new ChromeOptions();
options.addArguments("incognito");

Ref: java - How to open incognito/private window with Selenium WD for different browser types? - Stack Overflow