org.unitils.selenium.downloader.RobotDownloaderFactory Maven / Gradle / Ivy
The newest version!
package org.unitils.selenium.downloader;
import org.unitils.core.Unitils;
import org.unitils.selenium.downloader.impl.RobotDownloaderIE9;
import org.unitils.util.PropertyUtils;
/**
* A factory class to create {@link RobotDownloader}.
*
* @author Willemijn Wouters
*
* @since 1.0.8
*
*/
public class RobotDownloaderFactory {
public static RobotDownloader createDownloaderIE() {
return PropertyUtils.getInstance(RobotDownloader.class.getName(), new RobotDownloaderIE9(), Unitils.getInstance().getConfiguration());
}
}