public function __construct(MailPage $mailPage, $contactsAutocompleteFrame)
 {
     parent::__construct($mailPage->getTestCase(), $contactsAutocompleteFrame);
     $this->mailPage = $mailPage;
 }
 /**
  * Creates a new HeadlinesEntry object
  *
  * @param MailPage $mailPage The mail page to which this entry belongs
  * @param unknown $headlinesEntryDiv A reference to the main div of this headline
  */
 public function __construct(MailPage $mailPage, $headlinesEntryDiv)
 {
     parent::__construct($mailPage->getTestCase(), $headlinesEntryDiv);
     $this->mailPage = $mailPage;
 }
 /**
  * Creates a new WidgetMessages object
  *
  * @param MailPage $mailPage The mail page to which this object belongs
  * @param unknown $rightSection A reference to the right section that
  * contains the widget
  */
 public function __construct(MailPage $mailPage, $rightSection)
 {
     parent::__construct($mailPage->getTestCase(), $rightSection);
     $this->mailPage = $mailPage;
 }