org.jlot.web.it.Firefox Maven / Gradle / Ivy
package org.jlot.web.it;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class Firefox
{
@Bean(destroyMethod = "quit")
public WebDriver webDriver ( )
{
return new FirefoxDriver();
}
}