What is Desired Capabilities ?
FireFox WebDriver and Desired capabilities
Usually we use below code to initiate FireFox driver
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
Webdriver driver = new FirefoxDriver();
Now, we need to learn about how to setup custom profile or capabilities of Firefox. So that we can have desired preference for browser. Someone may want to have Firefox accept site certificates and may want to file download to specific location without and popup for save etc..Selenium webdriver helps in setting desired capabilities for FireFox browser.
For setting desired capabilities we need to use below code.
import org.openqa.selenium.remote.DesiredCapabilities;
DesiredCapabilities dc=DesiredCapabilities.firefox();
Webdriver driver = new FirefoxDriver(dc);
FireFox Profile
We can create custom FireFox profile and use it with desired capabilities for example :
import org.openqa.selenium.firefox.FirefoxProfile;
FirefoxProfile profile = new FirefoxProfile();
Example to use Firefox profile with desired capabilities
DesiredCapabilities dc=DesiredCapabilities.firefox();
FirefoxProfile profile = new FirefoxProfile();
dc.setCapability(FirefoxDriver.PROFILE, profile);
Webdriver driver = new FirefoxDriver(dc);
Thus the webdriver will get initilized with desired capabilities & profile set.
What preferences to use in firefox profile?
Preferences can be some setting of Firefox browser specific to the download or any other type of preffred settings. To get the preferences you can open Firefox browser and type "about:config" in url and hit enter. you will get the list of all the Firefox prerences list and Settings.
Now we need to use them in our code for setting Firefox profile for example :
FirefoxProfile profile = new FirefoxProfile();
profile.setAcceptUntrustedCertificates(false);
profile.setAssumeUntrustedCertificateIssuer(true);
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.helperApps.alwaysAsk.force", false);
Finally you can combile all the things above and initiate FireFox driver as shown in below example:
FirefoxProfile profile = new FirefoxProfile();
DesiredCapabilities dc=DesiredCapabilities.firefox();
profile.setAcceptUntrustedCertificates(false);
profile.setAssumeUntrustedCertificateIssuer(true);
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.helperApps.alwaysAsk.force", false);
profile.setPreference("browser.download.manager.showWhenStarting",false);
profile.setPreference("browser.download.dir", "C:\Downloads");
profile.setPreference("browser.download.downloadDir","C:\Downloads"); profile.setPreference("browser.download.defaultFolder","C:\Downloads"); profile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/anytext ,text/plain,text/html,application/plain" );
dc = DesiredCapabilities.firefox();
dc.setCapability(FirefoxDriver.PROFILE, profile);
Webdriver driver = new FirefoxDriver(dc);
Above code will initilise firefox driver which will never ask for file download for file MIME type mentioned. We can add more file MIME types in above code as per requirenment. File MIME type can be found here.
For more information on desired capabilities please refere this link.