Dim price,quantity,output
price=Browser("采购合同管理---操作人:s###").Window("采购合同管理总单-新增---操作人:s###").Page("采购合同管理总单-新增---操作人:s###").WebEdit("price").GetROProperty("Value")
(变量:取WebEdit("price")显示的值赋值给price)
quantity=Browser("采购合同管理---操作人:s###").Window("采购合同管理总单-新增---操作人:s###").Page("采购合同管理总单-新增---操作人:s###").WebEdit("goodsqty").GetROProperty("Value")
(变量:取WebEdit("goodsqty")显示的值赋值给quantity)
output=Browser("采购合同管理---操作人:s###").Window("采购合同管理总单-新增---操作人:s###").Page("采购合同管理总单-新增---操作人:s###").WebEdit("conmoney").GetROProperty("Value")
(变量:取WebEdit("conmoney")显示的值赋值给output)
If output=price*quantity
Then
Reporter.ReportEvent micPass, "testing", "pass"
else
Reporter.ReportEvent micFail, "testing", "Failed"
end if
Dim price,quantity,input
price=DataTable("price", dtGlobalSheet)
quantity=DataTable("quantity", dtGlobalSheet)
output=DataTable("amount", dtGlobalSheet)
If output=price*quantity
Then
Reporter.ReportEvent micPass, "testing", "pass"
else
Reporter.ReportEvent micFail, "testing", "Failed"
end if
Dim price,quantity,amount
price=DataTable("price", dtGlobalSheet)
quantity=DataTable("quantity", dtGlobalSheet)
amount=DataTable("amount", dtGlobalSheet)
If amount=price*quantity Then
Reporter.ReportEvent micPass, "testing", "pass"
else
Reporter.ReportEvent micFail, "testing", "Failed"
end if