Esempio n. 1
0
File: Cases.php Progetto: dairdr/crm
 /**
  * @return CaseEntity
  */
 public function add()
 {
     $this->test->byXPath("//a[@title='Create Case']")->click();
     $this->waitPageToLoad();
     $this->waitForAjax();
     $task = new CaseEntity($this->test);
     return $task->init();
 }
Esempio n. 2
0
 public function entityNew()
 {
     $case = new CaseEntity($this->test);
     return $case->init();
 }