// Ensure the frequency set is every hour so that Hourly job we've modified is used
watchlistPreferences.setNotifierDaily();
watchlistPreferences.clickSaveAndContinue();
// Switch to Admin user and go to the scheduler home page
SchedulerHomePage schedulerHomePage = new SchedulerHomePage();
getDriver().get(getUtil().getURLToLoginAsAdminAndGotoPage(schedulerHomePage.getURL()));
getUtil().recacheSecretToken();
// Trigger the notification
schedulerHomePage.clickJobActionTrigger("WatchList daily notifier");
// Wait for the email with a timeout
Assert.assertTrue("Mail not received", this.greenMail.waitForIncomingEmail(70000, 1));
String messageFromXWiki = GreenMailUtil.getBody(this.greenMail.getReceivedMessages()[0]);