Skip to content

Instantly share code, notes, and snippets.

@omisolaidowu
Last active February 22, 2024 03:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omisolaidowu/8d76a135b9895b05a877fcbc12888316 to your computer and use it in GitHub Desktop.
Save omisolaidowu/8d76a135b9895b05a877fcbc12888316 to your computer and use it in GitHub Desktop.
Patcher
(async () => {
// ...
// patch navigator.platform
await page.evaluateOnNewDocument(() => {
// redefine navigator.platform for macOS
Object.defineProperty(navigator, 'platform', {
value: 'MacIntel',
});
});
await browser.close();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment