chromedp/runner/path_darwin.go

13 lines
257 B
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
// +build darwin
package runner
const (
// DefaultChromePath is the default path to the Chrome application.
2017-01-24 15:09:23 +00:00
DefaultChromePath = `/Applications/Google Chrome.app/Contents/MacOS/Google Chrome`
)
func findChromePath() string {
return DefaultChromePath
}