Hi, I am hoping to get access to the Puppeteer Browser Rendering for some personal use case (dynamic
Hi, I am hoping to get access to the Puppeteer Browser Rendering for some personal use case (dynamic resume.pdf generation) on my personal site.
__doPostBack is not defined error when running puppeteer in browser rendering. I tried the same code in local puppeteer on node, and it works just fine. The page loads fine on both, a screenshot of the page looks the same on both. I also used puppeteer verison 17 locally, since that's the version that @cloudflare/puppeteer is forked from. Still not working. Any thoughts?Page.waitForFunction() to return a truthy value https://pptr.dev/api/puppeteer.page.waitforfunction__doPostBack will not be instantaneous.waitUntil set to loadawait page.waitForFunction(() => typeof window.__doPostBack === 'function');networkidle0 actually yeahTimeoutError: waiting for function failed: timeout 30000ms exceeded__doPostBack is not definedPage.waitForFunction()__doPostBackloadawait page.waitForFunction(() => typeof window.__doPostBack === 'function');networkidle0TimeoutError: waiting for function failed: timeout 30000ms exceededawait page.goto('https://google.com', { waitUntil: 'load' });