私は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
今も同じ問題があります。オブジェクトスパイは、使用したいテーブルとそのテーブルで使用したいプロパティを3つ表示します。提案をお願いします。