org.fluentlenium.cucumber.adapter.util.SharedDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluentlenium-cucumber Show documentation
Show all versions of fluentlenium-cucumber Show documentation
Cucumber JVM Extension for FluentLenium
package org.fluentlenium.cucumber.adapter.util;
import org.openqa.selenium.Beta;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface SharedDriver {
public enum SharedType {ONCE, PER_SCENARIO}
SharedType type() default SharedType.PER_SCENARIO;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy