I am unable to launch URL in Firefox. The browser is successfully launched but the URL that it open is :"https://www.mozilla.org/en-US/firefox/43.0.4/firstrun/learnmore/". And this browser closes itself after sometime.
This might be an issue with profile setting, but unsure how to fix this issue.
Code used:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Launchingbrowsers {
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get("https://www.facebook.com/?_rdr=p");
}
}
Please help with steps to resolve this issue