示例#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();
 }