When we write something like this:
FirefoxProfile ffprofile = new FirefoxProfile(new File(\"D:\\\\Selenium\"));
Does it mean we are creatin
Following code will create firefox profile (based on provided file) and create a new FF webdriver instance with this profile loaded:
FirefoxProfile profile = new FirefoxProfile(new File("D:\\Selenium Profile"));
WebDriver driver = new FirefoxDriver(profile);
Maybe take a look on the official support page for FF profile manager or here: Custom Firefox profile for Selenium to get some idea on FF profiles.