|
Dim i,row,cou,j
dim message
row=Browser("全面预算管理系统").Page("全面预算管理系统").Frame("frmMain").WebTable("首页").RowCount
i=3
j=1
Do
While i<6
message= Browser("全面预算管理系统").Page("全面预算管理系统").Frame("frmMain").WebTable("首页").GetCellData(i,4)
cou=cdbl(message)
If cou<>246038 Then Reporter.ReportEvent micFail, "Custom Step", "The user-defined step failed."
j=j+1 end if
msgbox(message)
i=i+1
Wend
Exit do
msgbox(cstr(j))
Loop
Browser("全面预算管理系统").Page("全面预算管理系统").Link("首页").Click
The test run cannot continue due to a syntax error.
缺少语句
details显示 line[11]:"i=i+1 end if"
请问我这样子写if语句不对么? |
|