chromedp/runner/path_darwin.go

12 lines
188 B
Go
Raw Normal View History

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