Skip to content

Instantly share code, notes, and snippets.

@tutv
Created August 31, 2022 08:19
Show Gist options
  • Select an option

  • Save tutv/fed175cc8dd058c87320e9ea54cb3f23 to your computer and use it in GitHub Desktop.

Select an option

Save tutv/fed175cc8dd058c87320e9ea54cb3f23 to your computer and use it in GitHub Desktop.
How to disable webrtc for puppeteer
await page.evaluateOnNewDocument(
`navigator.mediaDevices.getUserMedia = navigator.webkitGetUserMedia = navigator.mozGetUserMedia = navigator.getUserMedia = webkitRTCPeerConnection = RTCPeerConnection = MediaStreamTrack = undefined;`
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment