コード例 #1
0
 /**
  * @return EventFiringWebDriverNavigation
  * @throws WebDriverException
  */
 public function navigate()
 {
     try {
         return new EventFiringWebDriverNavigation($this->driver->navigate(), $this->getDispatcher());
     } catch (WebDriverException $exception) {
         $this->dispatchOnException($exception);
     }
 }
コード例 #2
0
ファイル: UITestCase.php プロジェクト: ekowabaka/cfx
 protected function navigateTo($path)
 {
     $this->driver->navigate()->to(getenv('CFX_TEST_WEB_HOST') . $path);
 }