コード例 #1
0
ファイル: SeleniumDriver.php プロジェクト: hason/Mink
 /**
  * @see Behat\Mink\Driver\DriverInterface::start()
  */
 public function start()
 {
     $this->started = true;
     $this->browser->start();
 }
コード例 #2
0
ファイル: phpunit.php プロジェクト: NaszvadiG/ImageCMS
 public static function setUpBeforeClass()
 {
     $client = new Selenium\Client('localhost', 4444);
     self::$browser = $client->getBrowser('http://alexandre-salome.fr');
     self::$browser->start();
 }