2017-01-24 15:09:23 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package runner
|
|
|
|
|
|
|
|
const (
|
2018-07-13 03:57:20 +00:00
|
|
|
// 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`
|
|
|
|
)
|
|
|
|
|
2018-07-13 03:57:20 +00:00
|
|
|
// DefaultChromeNames are the default Chrome executable names to look for in
|
|
|
|
// %PATH%.
|
|
|
|
var DefaultChromeNames = []string{`chrome.exe`}
|