All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy