iframes: true
act()
observe()
extract()
// Act within iframes await page.act({ action: "click the accept cookies button", iframes: true }); // Observe within iframes const results = await page.observe({ instruction: "Find the primary action button", iframes: true, }); // Extract from iframes const data = await page.extract({ instruction: "Extract the product price from the payment widget", schema: z.object({ price: z.string(), }), iframes: true, });