driver.findElement(By.id("multipartForm:photoTitle")).sendKeys(photoTitle);
driver.findElement(By.id("multipartForm:photoDescription")).clear();
driver.findElement(By.id("multipartForm:photoDescription")).sendKeys(photoDescription);
driver.findElement(By.id("multipartForm:photoUploader")).sendKeys(filePath);
driver.findElement(By.id("multipartForm:uploadButton")).click();
return new ViewAlbumPage(driver, contextPath);
}