@When("^one recipient opens their email$")
 public void one_recipient_opens_their_email() throws Throwable {
   ImagePage page = new ImagePage();
   page.load("*****@*****.**");
 }
 @When("^all recipients opens their email$")
 public void all_recipients_opens_their_email() throws Throwable {
   ImagePage page = new ImagePage();
   page.load("*****@*****.**");
   page.load("*****@*****.**");
 }