Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run chrome browser in inconginto Mode in Selenium

Tags:

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:

  1. Right click on the shortcut of Google Chrome and select "Properties".
  2. On "Shortcut" tab on the "Target" field add an –incognito to the end of program path. So in the "Target" field you should have "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" –incognito

but I didn't get how to run this in selenium.

like image 668
kailash gaur Avatar asked Sep 26 '13 10:09

kailash gaur


People also ask

How do I run Selenium automation in Incognito mode?

There are two main ways to execute our selenium Test in Incognito Mode for Chrome Browser. v Right Click on Google Chrome and Select Properties. v In the “Target' field add an –incognito to the end of the program path. v Our incognito browser is now ready for execution.

How do I run test cases in Incognito mode?

Before you can run tests in Incognito mode in your Chrome browser, you need to allow the Testim extension to run in Incognito mode. To allow the Testim Chrome extension to run in Incognito mode: In your Chrome browser, navigate to chrome://extensions URL. Locate the Testim Editor extension and click the Details button.


1 Answers

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.

like image 184
kailash gaur Avatar answered Dec 24 '22 19:12

kailash gaur