Пример #1
0
 /**
  * Stops browser connection if the session is not marked as contiguous
  * @return mixed
  */
 public function stop()
 {
     if (!$this->_contiguousSession) {
         return;
     }
     self::$_currentSessionId = null;
     self::$_currentBrowser = null;
     self::$_currentContiguousSession = null;
     self::$_currentTestClassName = null;
     parent::stop();
 }