如何使用selenium rc查找页面中是否存在javascript错误

发布于 2024-08-14 16:59:16 字数 106 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆° 2024-08-21 16:59:16

我不确定 Selenium API 中是否有任何东西可以做到这一点。如何在所有其他 JavaScript 之后添加类似的内容:

document.write('<!--JSOK-->');

然后断言它存在于您的测试脚本中?如果 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:

document.write('<!--JSOK-->');

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.

宣告ˉ结束 2024-08-21 16:59:16

我知道它不是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文