在selenium rc测试用例中调用xml文件
如何将 xml 文件集成到我的 selenium rc 测试用例中?我想从文件中获取信息并将其插入网页并进行测试。 谢谢,尼廷
how can I integrate xml file into my selenium rc test cases? I want to grab information from the file and insert it into the web page and test it.
thanks, Nitin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以使用 org.w3c.dom.Document 将 XML 数据读取到参数化 JUnit 测试中。您必须使用 JUnit 4.11 或更高版本。 这里有一些示例代码,可帮助您开始阅读 xml 文件。 这是一个示例创建参数化数据提供程序。
要使其发挥作用,您需要合并这两个想法。不幸的是,我无法为您编写代码。
To do that, you can use org.w3c.dom.Document to read XML data into a Parameterized JUnit test. You MUST use JUnit 4.11 or higher. Here is some sample code to get you started on reading the xml file. Here is an example of creating a Parameterized data provider.
To get that working, you will need to merge these 2 ideas. I can't write your code for you, unfortunately.