Fix electron binary relative path

The relative path for Electron's binary is Contents/MacOS/Electron
This commit is contained in:
Habib Rehman 2016-02-12 00:11:02 +00:00
parent 9d6344704e
commit 3adcaa7681

View file

@ -49,7 +49,7 @@ var driver = new webdriver.Builder()
.withCapabilities({ .withCapabilities({
chromeOptions: { chromeOptions: {
// Here is the path to your Electron binary. // Here is the path to your Electron binary.
binary: '/Path-to-Your-App.app/Contents/MacOS/Atom', binary: '/Path-to-Your-App.app/Contents/MacOS/Electron',
} }
}) })
.forBrowser('electron') .forBrowser('electron')