com.github.jsdevel.testng.selenium.annotations.drivers.Firefox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng-selenium Show documentation
Show all versions of testng-selenium Show documentation
A library for easy TestNG Selenium testing.
package com.github.jsdevel.testng.selenium.annotations.drivers;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Using this annotation with {@link org.testng.annotations.Test} will cause the
* current {@link com.github.jsdevel.testng.selenium.MethodContext} to receive a
* {@link org.openqa.selenium.WebDriver} instance of
* {@link org.openqa.selenium.firefox.FirefoxDriver}.
*
* @author Joseph Spencer
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface Firefox {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy