使用测试完成工具在 VB 脚本中计算 DataGrid 中的行计数
我被分配使用测试完成工具在 VB 脚本中编写自动化 Web 应用程序的脚本。在我的应用程序中,我必须删除数据,并且必须在删除后检查删除的数据是否存在于数据网格中。我该怎么办呢。我尝试通过计算数据网格的行数来做到这一点。但是,由于测试完成中的 DataGrid 没有 RowCount 属性,因此我找不到解决方案。请帮我找到 RowCount。
提前致谢。,
Im assigned to write the scripts for Automating a Web Application in VB Scripts using Test Complete Tool. In my application, I have to delete a data and have to check after deleting that whether the deleted data exists on the datagrid or not. How can I do it. I tried doing that by calculating the RowCount of the Datagrid. But, since there is no RowCount Property for the DataGrid in Test Complete, I cant find the solution. Please help me with this to find the RowCount.
Thanks In Advance.,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请检查您的网格类名是否应为 xxxGrid 而不是 xxxGridSite。
因为 rowcount 属性仅适用于 xxxGrid 类名。
Please check your Grid classname should xxxGrid not xxxGridSite.
Because rowcount properties are available only xxxGrid classname.
对于受支持的网格控件,您可以使用 wRowCount:
http://smartbear.com/support/viewarticle/14601/
如果网格不受支持在开放应用程序中,您可以使用网格控件的本机属性和方法可用于 TestComplete(检查对象浏览器以查看列表)。您可能需要询问您的开发团队在测试中使用哪些确切的属性/方法来完成特定任务。
另外,如果网格不受支持,请不要忘记在功能调查中为其投票:)
http://smartbear.com/products/qa-tools/automated-testing/调查/
For supported grid controls, you can use wRowCount:
http://smartbear.com/support/viewarticle/14601/
In case of an unsupported grid in an Open Application, you can use the grid control's native properties and methods availble to TestComplete (check the Object Browser to see the list). You may need to ask your Dev Team about what exact properties/methods to use in your test to accomplish a specific task.
Also, in case of an unsupported gird, don't forget to vote for it in the feature survey :)
http://smartbear.com/products/qa-tools/automated-testing/survey/