@When(
     "^I create other Meeting with the following information: \"([^\"]*)\", \"([^\"]*)\", \"([^\"]*)\", \"([^\"]*)\", \"([^\"]*)\", \"([^\"]*)\"$")
 public void createOtherMeetingWithTheFollowingInformation(
     String organizer, String subject, String from, String to, String attendees, String body) {
   meetingEntity2.setAllFields(organizer, subject, from, to, attendees, body);
   credentialsPage = schedulePage.createNewMeeting(meetingEntity2);
   credentialsPage.cancelCredentials(
       externalVariablesManager.getExchangeUserName(),
       externalVariablesManager.getExchangeUserPassword());
 }