From ac0fdf54683a057e76f2c57a1b08c598358d4acc Mon Sep 17 00:00:00 2001 From: Adrian Calinescu Date: Thu, 15 Oct 2020 16:07:20 +0300 Subject: [PATCH] Fix MSEdge launch params --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b630624..c8cb911 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,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' --profile-directory=Default", + executablePath: 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe', ``` Note that for Mac/Linux the path will look a little different but no other changes are necessary.