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