Selenium webdriver seems not working properly with Firefox 49.0. Am I missing something? Selenium webdriver seems not working properly with Firefox 49.0. Am I missing something? selenium selenium

Selenium webdriver seems not working properly with Firefox 49.0. Am I missing something?


Try renaming the downloaded Gecko Driver to Wires and Set the Capabilities as mentioned Below.

System.setProperty("webdriver.gecko.driver", "//home//.....//BrowserDrivers//wires");DesiredCapabilities capabilities = DesiredCapabilities.firefox();capabilities.setCapability("marionette", true);Driver = new MarionetteDriver(capabilities);

I tried with the Above code on FireFox 49 on Linux Ubuntu 14.04 LTS... Code Works Fine For Me in Java.. Also try to downgrade the selenium WebDriver from Beta to 2.53 as Beta version is unstable..