生成从 html 到 xml 的问题
我有一个物流网站,其中有一个提交新闻包的处方集。我目前正在该网站上进行测试运行,我想为该包配方做一些测试...问题是我想使用配方中的不同信息进行大量测试,并且编辑 xml 是一个有点累。
我正在寻找一个工具,可以生成有关 html 网站(或使用 .class 对象)的公式,其中包含所有字段以及我可以在其中填充它并生成自动 xml 来进行测试的地方。
我的老板告诉我,它可能可以用“wsdl”来做到这一点,但我对此没有任何想法。你能帮我解决什么问题吗?
我正在使用 .NET c# 进行测试:gladio、watin 和 NUnit。
I have a logistic web where there is a formulary to submit news package. I'm currently doing test runings on that website and I want to do some for that package formulary... The problem is that I want to do a lot of tests with diferent info in the formularys, and do that editing an xml is a bit tiresome.
I am looking for a tool that can generate a formulary about an html website (or with the .class object) with all the fields there are and where I can fill it and generate an automatic xml to do the tests.
My boss told me that it probably could do it with "wsdl" but i dont have any idea about that. Can you help me with any solution?
I'm working with .NET c#, and for the tests: gladio, watin and NUnit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您所说的提交新闻包的公式是什么意思,但如果您正在寻找用于测试的示例数据,这里有一些示例数据生成器:http://www.webresourcesdepot.com/test-sample-data-generators/
您可以使用示例数据创建并保存用于测试的 xml 文件。
此外,
wsdl
是Web 服务描述语言
的缩写,它对您的目的没有任何用处。I'm not sure what you mean by formulary to submit news package, but if you are looking for sample data to do tests with, here are some sample data generators: http://www.webresourcesdepot.com/test-sample-data-generators/
You can use the sample data to create and save xml files for your tests.
Also,
wsdl
is short forWeb Services Description Language
, which is on no use for your purpose.