// Click the delete icon again and this confirm the action.
appsLiveTable.clickDeleteApplication(appName).clickYes();
// We should be taken back to the AppWithinMinutes home page.
homePage = new AppWithinMinutesHomePage();
appsLiveTable = homePage.getAppsLiveTable();
appsLiveTable.waitUntilReady();
// The application name filter should've been preserved.
Assert.assertEquals(appName.substring(0, 3), appsLiveTable.getApplicationNameFilter());
// And the deleted application shouldn't be listed anymore.
Assert.assertFalse(appsLiveTable.isApplicationListed(appName));
}