diff --git a/chromedp.go b/chromedp.go index 8be0129..8a5fc41 100644 --- a/chromedp.go +++ b/chromedp.go @@ -1,3 +1,9 @@ +// Package chromedp is a high level Chrome Debugging Protocol domain manager +// that simplifies driving web browsers (Chrome, Safari, Edge, Android Web +// Views, and others) for scraping, unit testing, or profiling web pages. +// +// chromedp requires no third-party dependencies (ie, Selenium), implementing +// the async Chrome Debugging Protocol natively. package chromedp import ( diff --git a/doc.go b/doc.go deleted file mode 100644 index 3c28fb0..0000000 --- a/doc.go +++ /dev/null @@ -1,7 +0,0 @@ -// Package chromedp is a high level Chrome Debugging Protocol domain manager -// that simplifies driving web browsers (Chrome, Safari, Edge, Android Web -// Views, and others) for scraping, unit testing, or profiling web pages. -// -// chromedp requires no third-party dependencies (ie, Selenium), implementing -// the async Chrome Debugging Protocol natively. -package chromedp