测试 XML 响应的最佳方法是什么?
我正在使用 selenium IDE 来测试我的网页,但不幸的是我无法使用它来测试那些返回 xml 响应的页面。有些人使用 Selenium Remote Control,其他人使用 Pearl 模块,如 WWW::Mechanize 和 Test::XML 或 Test::XPath(但这些对我来说不是选择,因为我使用 Java)。
测试 XML 响应的最佳方法是什么?
I'm using selenium IDE to test my webpages but unfortunately I cannot use it to test those pages that return an xml response. Some people use Selenium Remote Control, others use Pearl modules like WWW::Mechanize and Test::XML or Test::XPath (but these are no option for me since I use Java).
What is the best way to test the XML responses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 XMLUnit 将响应与预期值进行比较。如果不需要直接比较,您可以首先过滤响应,例如 XSLT 转换,以生成更容易测试的内容。
You can use XMLUnit to compare the response against an expected value. If direct comparison isn't desirable, you can filter the response first, e.g. an XSLT transform, to produce something that is more easily tested.