如何使用 puppeteer 单击 JavaScript 提示
假设我访问某个网站,然后出现一个弹出窗口,要求允许我的视频。如何选择并使其true
?
我尝试了 await page.keyboard.press('Enter')
但它不起作用。
Let's say I visit some website and then a popup comes, asking to allow my video. How do I select and make it true
?
I tried the await page.keyboard.press('Enter')
but it doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要为对话框创建一个事件侦听器:
您可以阅读完整文档 这里。
You need to create an event listener for dialogs:
You can read the full documentation here.