使用 seleniumRC 检测 500 内部服务器错误
如何使用 selenium RC 确定 500 内部服务器错误?
我尝试使用 selenium.isTextPresent();方法,但它根本不显示或检测到发生的情况。
How can you determine 500 internal server error using selenium RC?
I have tried to use selenium.isTextPresent(); method but it does not show or detect the occurring at all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
探索
captureNetworkTraffic=true
模式的使用。这应该使您能够记录源自调用的所有响应/请求,包括 HTTP 500。这里是一个帮助您开始使用 Java 的链接。
Explore the use of the
captureNetworkTraffic=true
mode. This should enable you to log all response/requests stemming from a call, including HTTP 500s.Here is a link to get you started in Java.
尝试 selenium.isElementPresent(locatorfor500error)
Try selenium.isElementPresent(locatorfor500error)