public function tearDown()
 {
     $this->webDriver->close();
 }
示例#2
0
文件: Test.php 项目: flrnull/acceptie
 private function _closeDriver()
 {
     $this->_driver->close();
 }
示例#3
0
 public static function tearDownAfterClass()
 {
     if (self::$webDriver != null) {
         self::$webDriver->close();
     }
 }