如何使用selenium rc查找页面中是否存在javascript错误
我正在使用 Selenium RC,我想知道页面中是否存在任何 JavaScript 错误。
是否有任何 Selenium API 可以检查是否存在任何 JavaScript 错误?
I am using Selenium RC and I would like to know if there were any JavaScript errors in the page.
Is there any Selenium API to check if there are any JavaScript errors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 Selenium API 中是否有任何东西可以做到这一点。如何在所有其他 JavaScript 之后添加类似的内容:
然后断言它存在于您的测试脚本中?如果 JavaScript 已经抛出错误,则
将不会呈现到 DOM。
I'm not sure there's anything in the Selenium API that can do this. How about putting something like this after all your other JavaScript:
then asserting that it exists from your test script? If the JavaScript has already thrown an error then
<!--JSOK-->
won't be rendered to the DOM.我知道它不是 Selenium,但我发现对于 javascript FireBug 来说是最好的。我知道您会选择“一体化”工具,但我会考虑在这种情况下破例。
I know it's not Selenium, but I've found that for javascript FireBug is the best hands down imho. I know you are going for the "all in one" tool, but I'd consider making an exception in this case.