コード例 #1
0
ファイル: SeleniumDriver.php プロジェクト: hason/Mink
 /**
  * @see Behat\Mink\Driver\DriverInterface::stop()
  */
 public function stop()
 {
     if (true === $this->started) {
         $this->browser->stop();
     }
     $this->started = false;
 }
コード例 #2
0
ファイル: phpunit.php プロジェクト: NaszvadiG/ImageCMS
 public static function tearDownAfterClass()
 {
     self::$browser->stop();
 }