예제 #1
0
 /**
  * Moves forward in history.
  */
 public function moveForward()
 {
     $this->webDriver->navigate()->forward();
     $this->debug($this->_getCurrentUri());
 }
예제 #2
0
 /**
  * Refresh the page.
  *
  * @return $this
  */
 protected function refresh()
 {
     $this->driver->navigate()->refresh();
     return $this;
 }