When we write something like this:
FirefoxProfile ffprofile = new FirefoxProfile(new File(\"D:\\\\Selenium\"));
Does it mean we are creatin
Create profile in Firefox browser.
Here is the code for using newly created firefox profile.
ProfilesIni profile = new ProfilesIni(); FirefoxProfile myprofile = profile.getProfile("firefox profile name"); WebDriver driver = new FirefoxDriver(myprofile);