You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importtype{Browser,Page}from'puppeteer-core'importpuppeteerfrom'puppeteer-extra'import{getStream,launch}from'puppeteer-stream'importStealthPluginfrom'puppeteer-extra-plugin-stealth'constbrowser=awaitlaunch({executablePath: puppeteer.executablePath(),headless: false,// open the browserdefaultViewport: {width: 1920,height: 1080,},args: ['--no-sandbox'],})// this is to prevent the browser from being detected as a bot when logging google accountconststealthPlugin=StealthPlugin()stealthPlugin.enabledEvasions.delete('iframe.contentWindow')stealthPlugin.enabledEvasions.delete('media.codecs')puppeteer.use(stealthPlugin)constpage=awaitbrowser.newPage()page.setViewport({width: 1920,height: 1080})// this will show you can't join this video callawaitpage.goto(googleMeetUrl,{waitUntil: 'networkidle0',})
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I would like to know how to join a google meet without account and make puppeteer don't show you can't join this video call.
There is also a issue that discuss this.
ref: #334, #334
I install this version, still not working.
This is my code.
Beta Was this translation helpful? Give feedback.
All reactions