de.lgohlke.selenium.webdriver.SwallowWebdriverException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdriver Show documentation
Show all versions of webdriver Show documentation
adds some essential webdriver util classes
The newest version!
package de.lgohlke.selenium.webdriver;
import org.openqa.selenium.WebDriverException;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
@Retention(RetentionPolicy.RUNTIME)
@Target({METHOD})
public @interface SwallowWebdriverException {
Class extends WebDriverException>[] value() default {};
}