예제 #1
0
파일: Leads.php 프로젝트: dairdr/crm
 /**
  * @return Lead
  */
 public function add()
 {
     $this->test->byXPath("//a[@title='Create Lead']")->click();
     $this->waitPageToLoad();
     $this->waitForAjax();
     $lead = new Lead($this->test);
     return $lead->init();
 }
예제 #2
0
파일: Leads.php 프로젝트: antrampa/crm
 public function entityNew()
 {
     $lead = new Lead($this->test);
     return $lead->init();
 }