mirror of https://github.com/jacekkow/uphpCAS-tests

Jacek Kowalski
2015-09-05 5686c9d8de959de0818bcd0a5b18a9c004d3dfc5
1
2
3
4
5
6
7
8
9
10
11
12
13
import org.junit.Test
import org.openqa.selenium.WebDriver
import org.openqa.selenium.htmlunit.HtmlUnitDriver
 
class Config {
    public static final String baseUrl = "http://127.0.0.1:8080";
    
    public static WebDriver getDriver() {
        WebDriver driver = new HtmlUnitDriver()
        driver.setJavascriptEnabled(true)
        return driver
    }
}