如何使用 selenium4 ruby 捕获控制台错误日志?
我们正在尝试捕获前端错误引发的控制台日志错误。下面的代码片段用于捕获日志,
$driver.on_log_event(:console) do |event|
$logs.push(event)
end
通过此代码片段,我们只能捕获浏览器默认值,而不能捕获应用程序抛出的错误。我们在这里遗漏了什么吗?
以下实际错误未在日志中捕获,
我可以使用 selenium4 方法“on_log_event”方法捕获控制台错误。但还需要捕获网络 api 错误。
We are trying to capture the console log error's which is throw from front end errors. Below code snippet used for capture the logs,
$driver.on_log_event(:console) do |event|
$logs.push(event)
end
By this code snippet we could capture only the browser default and not capturing the application thrown errors. Are we missing anything here.
This error's are captured from console,
The below actual errors are not capturing on the logs,
I could able to capture console error's using selenium4 method "on_log_event" method. But need to capture the network api error as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论