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:
- Right click on the shortcut of Google Chrome and select "Properties".
- 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.
ChromeOptions.add_argument()
rather than addArguments(). – Farmer