I'm trying to get Selenium tests running with Firefox. I'm using C#.
new OpenQA.Selenium.Firefox.FirefoxDriver();
I also tried it with a profile set:
FirefoxProfile profile = new FirefoxProfile(@"E:\...\FirefoxProfile");
new OpenQA.Selenium.Firefox.FirefoxDriver();
Error I'm getting:
Unable to bind to locking port 7054 within 45000 ms
I even tried uninstalling Firefox including profiles and re-installing again. Didn't help.
FYI: I have a question concerning 3 selenium webdrivers. I'm trying to split the question into multiple so the discussion is easier. Original: Selenium WebDriver - No driver is working for me