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

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();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy