ll110 发表于 2009-5-6 00:26:46

QTP录制用户登陆为什么用户名参数化后第一行总不执行?

QTP录制用户登陆为什么用户名参数化后第一行总不执行?
执行到最后还给出错误.Cannot identify the object "username" (of class WebEdit). Verify that this object's properties match an object currently displayed in your application.
Line (11): "Browser("Rapid Manager").Page("Rapid Manager_2").WebEdit("username").Set DataTable("username", dtLocalSheet)".


我的总脚本是这样的:
Dim i
Dim output
Dim input
For i=1 to datatable.GetSheet("Action1").getrowcount
output=datatable("outputvalue",dtLocalSheet)
input=datatable("status",dtLocalSheet)
If output<>inputThen
        reporter.ReportEvent micFail, "login test", "预期值与;实际值不一致"
End If

datatable.GetSheet("Action1").setnextrow

Browser("Rapid Manager_2").Page("Rapid Manager_2").WebEdit("username").Set DataTable("username", dtLocalSheet)
Browser("Rapid Manager_2").Page("Rapid Manager_2").WebEdit("password").SetSecure DataTable("password", dtLocalSheet)
Browser("Rapid Manager_2").Page("Rapid Manager_2").WebButton("Login").Click
Browser("Rapid Manager_2").Page("Rapid Manager").Output CheckPoint("Rapid Manager")

Next

Browser("Rapid Manager_2").Page("Rapid Manager_2").Link("Logout").Click

希望高手能帮忙看看,我是刚开始学习
谢谢

zte_boy 发表于 2009-5-6 08:57:06

错误很清楚了阿,识别不到username这个对象,检查下对象属性吧

ziheng198688 发表于 2009-6-8 17:27:07

貌似楼主执行脚本时没有将应用程序打开 所以提示找不到对象
页: [1]
查看完整版本: QTP录制用户登陆为什么用户名参数化后第一行总不执行?