Exemple #1
0
 /**
  * @return Contact
  */
 public function add()
 {
     $this->test->byXPath("//a[@title='Create Contact']")->click();
     $this->waitPageToLoad();
     $this->waitForAjax();
     $contact = new Contact($this->test);
     return $contact->init();
 }
Exemple #2
0
 public function entityNew()
 {
     $contact = new Contact($this->test);
     return $contact->init();
 }