Relative Content

Tag Archive for javascriptiframepuppeteer

Why is the iframe not loading in puppeteer?

const iframeElementHandle = await page.$(‘iframe’); // console.log(0); await iframeElementHandle.waitForSelector(‘iframe’); // console.log(1); after waitForSelector the code doesn’t want to happen further I need to load an iframe and then manage my js code inside the iframe. javascript iframe puppeteer 3