@When("I fill in the login form with username \"$username\" password \"$password\"")
public void login(String username, String password) {
final WebElement loginForm = portal.getLoginForm();
loginForm.findElement(By.id("usernameField")).sendKeys(username);
loginForm.findElement(By.id("passwordField")).sendKeys(password);
loginForm.submit();
}
@Then("I see my portal page with the add new widgets box")
public void iSeeMyEmptyPortalPage() {
final WebElement emptyPageBox = portal.getEmptyPageBox();