public function index()
 {
     $this->autoRender = false;
     //        echo phpinfo();
     $selenium = new Testing_Selenium('chrome', 'http://cpa.cesufoz.edu.br');
     $selenium->start();
     //        $selenium->getTitle('CPA'); // Qual é a URL que ele vai usar
     $selenium->type("UserPassword", '362476');
     $selenium->stop();
     //        $this->setUp();
     //$this->testTitle();
 }
 /**
  * Type into an input field.
  *
  * @param  string  $locator
  * @param  string  $value
  * @return string
  * @access public
  */
 public function type($locator, $value)
 {
     return $this->selenium->type($locator, $value);
 }