@When("I delete the the user \"$newuser\"")
public void deleteNewUser() {
WebElement deleteUserProfileForm=portal.findElement(By.id("deleteUserProfile"));
//Click the checkbox to confirm the deletion.
deleteUserProfileForm.findElement(By.id("confirmdelete")).click();
deleteUserProfileForm.submit();
}
//See the list of users again, search, and not find "newuser" this time.
@Then("I see \"$deletionConfirmationStatement\"")