コード例 #1
0
ファイル: WebDriver.php プロジェクト: neronmoon/Codeception
 /**
  * Moves forward in history.
  */
 public function moveForward()
 {
     $this->webDriver->navigate()->forward();
     $this->debug($this->_getCurrentUri());
 }
コード例 #2
0
ファイル: WebDriverShortcuts.php プロジェクト: phanan/koel
 /**
  * Refresh the page.
  *
  * @return $this
  */
 protected function refresh()
 {
     $this->driver->navigate()->refresh();
     return $this;
 }