I\'m starting using selenium Webdriver with c# and Visualstudio.
I would like to start Internetexplorer in private mode. So I have not to care about old browsing da
Here, InternetExplorerOptions Members page; it is stated that BrowserCommandLineArguments
property only has an effect when the ForceCreateProcessApi
is true. ForceCreateProcessApi default value is false.
Would you please try to set it manually?
options.ForceCreateProcessApi = true;
options.BrowserCommandLineArguments = "-private";