browser->responseHeaders(); } /** * Current request status code response * @return int */ public function getStatusCode() { return $this->browser->getStatusCode(); } /** * The name say its all * @param string $name * @param string $value */ public function setRequestHeader($name, $value) { $header = array(); $header[$name] = $value; //TODO: as a limitation of the driver it self, we will send permanent for the moment $this->browser->addHeader($header, true); } }