有没有办法从 Chrome 中的 JavaScript 对话框中提取消息?
我一直在开发一个用于在 Chrome 中进行自动化测试的扩展,并且遇到了一个有关 JavaScript 对话框的模糊问题。对话框中显示的消息无法轻松检索/复制。我使用了 GetWindowText 和 InternalGetWindowText 函数,但它们仅返回对话框的标题和按钮的文本,而不返回实际的消息本身。
我什至查看了从表单中提取文本的程序,但没有成功。那么有人知道如何从 Chrome 中的这些 JavaScript 对话框中检索文本吗?
I’ve been working on an extension for automating tests in Chrome, and I came across an obscure issue with JavaScript dialogs. The message shown in the dialog can’t be readily retrieved/copied. I’ve used the GetWindowText and InternalGetWindowText functions, but they only return the title of the dialog and the text from the buttons, not the actual message itself.
I even looked at programs that extract text from forms, but no luck. So does anyone know of a way to retrieve the text from these JavaScript dialogs in Chrome?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新:供将来参考,我已经找到了解决方案。我将组合键“Ctrl+c”发送到对话框,并通过剪贴板检索文本。
Update: For future reference, I already found a solution. I send the key combination "Ctrl+c" to the dialog, and retrieve the text via the clipboard.