I'm trying to automate Firefox aurora 5 with selenium 2.6 (I can't use a newer version because its a modified Firefox version, and making the changes in a newer aurora is a big issue).
I'm calling:
FirefoxBinary binary = new FirefoxBinary(aurora_exe_path);
FirefoxDriver driver = new FirefoxDriver();
Aurora is being executed, but selenium fails to connect firefox WebDriver. I noticed that Aurora does not open a listen port on 7055, but I just can't understand why, or how to fix it.
Thanks a lot for your help!