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

org.fluentlenium.configuration.WebDrivers Maven / Gradle / Ivy

There is a newer version: 5.0.4
Show newest version
package org.fluentlenium.configuration;

import lombok.experimental.Delegate;
import org.openqa.selenium.WebDriver;

/**
 * A registry of {@link WebDriverFactory}.
 * 

* Supported drivers are "firefox", "chrome", "ie", "htmlunit", or any class name implementing {@link WebDriver}. */ public enum WebDrivers { /** * Singleton */ INSTANCE; @Delegate private final WebDriversRegistryImpl impl = new WebDriversRegistryImpl(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy