chromedp/runner/path_windows.go

14 lines
365 B
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
// +build windows
package runner
const (
// DefaultChromePath is the default path to use for Chrome if the
2017-01-24 15:09:23 +00:00
// executable is not in %PATH%.
DefaultChromePath = `C:\Program Files (x86)\Google\Chrome\Application\chrome.exe`
)
// DefaultChromeNames are the default Chrome executable names to look for in
// %PATH%.
var DefaultChromeNames = []string{`chrome.exe`}