About chromedp
Package chromedp is a faster, simpler way to drive browsers supporting the
Chrome DevTools Protocol in Go without external dependencies.

Installing
Install in the usual Go way:
$ go get -u github.com/chromedp/chromedp
Examples
Refer to the Go reference for the documentation and examples.
Additionally, the examples repository contains more
examples on complex actions, and other common high-level tasks such as taking
full page screenshots.
Frequently Asked Questions
I can't see any Chrome browser window
By default, Chrome is run in headless mode. See DefaultExecAllocatorOptions, and
an example to override the default options.