Goose\Crawler::getHTML PHP Method

getHTML() private method

private getHTML ( string $url ) : string
$url string
return string
    private function getHTML($url)
    {
        $options = $this->config()->get('browser');
        $guzzle = new \GuzzleHttp\Client();
        $response = $guzzle->get($url, $options);
        return $response->getBody()->getContents();
    }