如何将多个测试对象从测试对象映射添加到脚本
测试我必须自动化的:在一个应用程序中,我必须创建 1000 个对象。 然后我必须去每个对象并输入一些值。
我使用脚本创建了一个对象,然后转到该对象并输入值。
现在,在对象创建步骤中,我放置了一个 for 循环,它创建了 1000 个不同名称的对象。
现在使用 RFT 的“添加对象到测试地图对象”向导,我将所有这些对象添加到测试对象地图。
现在我想将测试对象映射中的所有这些对象添加到我的脚本中。 使用RFT工具我可以一项一项地添加,这很耗时。 我想要一种方法,可以从测试对象图中选择所有这些对象并添加到脚本中。
如果您知道,请为我提供解决方案。 为此我将感谢你。
Test which I have to automate: In an applicationmy I have to create 1000 objects. Then I have to go to each object and I have to put some value.
Using script I created one object and then going to this object and putting value.
Now in object creation step I put a for loop which created 1000 objects of different name.
Now using "Add Object to test map object" wizard of RFT I added all these objects to test object map.
Now I want to add all these objects from test object map to my script. With RFT tool I can add one by one which is time consuming. I want a method by which I could select all these object from test object map and add to script.
If you know then please provide me solution. For this I will be thankfull to you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将对象定义存储在与 RFT 提供的本机对象映射不同形式的存储库中。 然后您可以使用 TestObject.find 方法来定位对象是动态的。
You could store the object definitions in a different form of repository to the native Object Map provided by RFT. Then you could use the TestObject.find method to locate the objects dynamically.