// Check the the applications live table lists the created application.
ApplicationsLiveTableElement appsLiveTable = homePage.getAppsLiveTable();
appsLiveTable.waitUntilReady();
Assert.assertTrue(appsLiveTable.hasColumn("Actions"));
appsLiveTable.filterApplicationName(appName.substring(0, 3));
Assert.assertTrue(appsLiveTable.isApplicationListed(appName));
// Click the delete icon then cancel the confirmation.
appsLiveTable.clickDeleteApplication(appName).clickNo();
// We should be taken back to the AppWithinMinutes home page.