Browse Source

Merge pull request #4450 from HR/patch-1

Fix electron binary relative path
Kevin Sawicki 9 years ago
parent
commit
03dd94d2b2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/tutorial/using-selenium-and-webdriver.md

+ 1 - 1
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')