А зачем так делать? Не лучше сделать метод login и вызывать его в каждом тесте? А url вынести в конфиг? public void login() throws Throwable{
//чтение данных из файла
String target = System.getProperty("target", "local");
properties.load(new FileReader(new File(String.format("src/test/resources/%
s.properties", target))));
driver.get(properties.getProperty("web.baseUrl"));
//driver.get("http:/www.example.com/login");
WebDriverWait wait = new WebDriverWait(driver, 10);
wait.until(ExpectedConditions.visibilityOfElementLocated((
By.id("user")))); //ожидание 10c
type("user", properties.getProperty("web.login"));
//wait.until(ExpectedConditions.visibilityOfElementLocated((
By.id("pass")))); //ожидание 10c
type("pass", properties.getProperty("web.password"));
driver.findElement(By.xpath("//button")).click();
}