From 3adcaa7681fdff87186aa08689c2b3567aaa78cb Mon Sep 17 00:00:00 2001
From: Habib Rehman
Date: Fri, 12 Feb 2016 00:11:02 +0000
Subject: [PATCH] Fix electron binary relative path
The relative path for Electron's binary is Contents/MacOS/Electron
---
docs/tutorial/using-selenium-and-webdriver.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/tutorial/using-selenium-and-webdriver.md b/docs/tutorial/using-selenium-and-webdriver.md
index 035dabdfe79f..2d296548dd9c 100644
--- a/docs/tutorial/using-selenium-and-webdriver.md
+++ b/docs/tutorial/using-selenium-and-webdriver.md
@@ -49,7 +49,7 @@ var driver = new webdriver.Builder()
.withCapabilities({
chromeOptions: {
// 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')