It might be nice to have a dedicated clipboard API scoped to page. Some ideas: ```js await page.pasteText(text); await page.keyboard.press('Ctrl + V'); await page.copySelection(); await context.clipboard.setContent(mimeType, content); ```
It might be nice to have a dedicated clipboard API scoped to page.
Some ideas: