List<WebElement> deleteLinks = driver.findElements(By.linkText("Delete"));
while (deleteLinks.size() > 0) {
followLink(deleteLinks.get(0));
Alert confirmDialog = driver.switchTo().alert();
confirmDialog.accept();
ExpectedCondition<Boolean> isDeleted = new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver driver) {
WebElement notification = driver.findElements(By.id("notification")).get(0);
return notification.getText().equals("Plugin Deleted");
}