1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-01-16 21:12:13 +00:00

Fix MSEdge launch params

This commit is contained in:
Adrian Calinescu
2020-10-15 16:07:20 +03:00
committed by GitHub
parent 15c420333e
commit ac0fdf5468

View File

@@ -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.