I want to run chrome in incongito
mode through selenium.
I googled enough for it and found how to run chrome directly in incongito
mode with the help of this link:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" –incognito
but I didn't get how to run this in selenium.
One other way to launch chrome in incognito mode is to add argument "-incognito" like following:
ChromeOptions options = new ChromeOptions();
options.addArguments("--incognito");
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
This solution works for me.