我有 asp.net 应用程序,使用 QTP 描述性代码测试该应用程序,但出现错误
找不到“[WebEdit]”对象的父“[Page]”(Page 类)。验证父属性是否与应用程序中当前显示的对象匹配。
第 (8) 行:".WebEdit("Page:=txtUserName").Set "raju""。
我的代码是
Systemutil.Run("http://some ip/login.aspx")
With Browser("creationtime:=0")
With .page("title:=.*")
With .WebTable("Name:=log_left,")
With .WebTable("Name:=leaf")
With .WebTable("Name:=txtUserName","Index:=0")
.WebEdit("Name:=txtUserName").Set "raju"
.WebEdit("Name:=txtPassword").Set "raju"
.WebButton("Name:=Button").Click
End With
End With
End With
End With
End With
现在我也有同样的问题,object spy 显示了 3 个表,我想使用哪个表以及我想在该表中使用哪个属性。请给我建议。