Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何专注于 puppeteer 中新打开的选项卡?我单击页面上打开一个新选项卡的元素,然后 puppeteer 将注意力集中在由于某种原因刚刚离开的页面上。如何专注于新打开的选项卡?我正在使用谷歌浏览器
您可以使用bringToFront函数。
await page.bringToFront();