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.
3