chromedp/runner/path_unix.go
2018-07-13 10:57:20 +07:00

20 lines
438 B
Go

// +build linux freebsd netbsd openbsd
package runner
const (
// DefaultChromePath is the default path to use for Chrome if the
// executable is not in $PATH.
DefaultChromePath = "/usr/bin/google-chrome"
)
// DefaultChromeNames are the default Chrome executable names to look for in
// $PATH.
var DefaultChromeNames = []string{
"google-chrome",
"chromium-browser",
"chromium",
"google-chrome-beta",
"google-chrome-unstable",
}