From 22658a37068754010b48d94ef201695db7429ddd Mon Sep 17 00:00:00 2001 From: Gargaj Date: Tue, 30 Mar 2021 18:27:17 +0200 Subject: [PATCH] escape edge path properly --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 861994d..8b2d67f 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ const browser: puppeteer.Browser = await puppeteer.launch({ Now, change `executablePath` to reflect the path to your browser and profile (i.e. to use Microsoft Edge on Windows): ```typescript - executablePath: 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe', + executablePath: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe', ``` In Linux for Chromium, ```typescript