chromedp/runner/path_darwin.go
2017-01-24 22:09:23 +07:00

12 lines
188 B
Go

// +build darwin
package runner
const (
DefaultChromePath = `/Applications/Google Chrome.app/Contents/MacOS/Google Chrome`
)
func findChromePath() string {
return DefaultChromePath
}