public function tearDown()
 {
     $this->webDriver->close();
 }
Exemple #2
0
 private function _closeDriver()
 {
     $this->_driver->close();
 }
Exemple #3
0
 public static function tearDownAfterClass()
 {
     if (self::$webDriver != null) {
         self::$webDriver->close();
     }
 }