This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
ForceCreateProcessApi doesn't start IE #7572
Open
Description
Originally reported on Google Code with ID 7572
Before filing an issue, please read the page at
http://code.google.com/p/selenium/wiki/SeleniumHelp This contains lot of
information about how best to get help, and tells you what we need to know.
Still here? We know that bugs are frustrating and annoying things. We also
know that you've probably spent ages trying to figure out what's wrong. The
more information you give us now, the more likely it is that we'll be able
to help.
What steps will reproduce the problem?
1. set the following keys:
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BFCACHE\iexplore.exe
to 0
and
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main\TabProcGrowth to 0
2. Try to start IE with ForceCreateProcessAPI = true
What is the expected output? What do you see instead?
IE should start but it doesn't and the webdriver times out looking for it.
Selenium version: Webdriver 2.42 and IEDriverServer 2.42
OS: Windows 8.1
Browser: IE
Browser version: 11.0.9600.17126
Please provide any additional information below. A sample reduced test
case, or a public URL that demonstrates the problem will intrigue our merry
band of Open Source developers far more than nothing at all: they'll be far
more likely to look at your problem if you make it easy for them!
InternetExplorerDriverService ieDriverService = InternetExplorerDriverService.CreateDefaultService(webDriverDir);
ieDriverService.LoggingLevel = InternetExplorerDriverLogLevel.Trace;
ieDriverService.LogFile = "c:\\jenkins\\iedriver.log";
var ieOptions = new InternetExplorerOptions();
ieOptions.ForceCreateProcessApi = true;
ieOptions.BrowserCommandLineArguments = "-private";
return new InternetExplorerDriver(ieDriverService, ieOptions);
Reported by RPWong
on 2014-07-07 21:28:54