Hi,
This is how you do
Before submitting capture the value 0 from that field(either edit box..or something)
This is how you do
Before submitting capture the value 0 from that field(either edit box..or something)
Code:
Res1= Browser("...").Page("......").Webedit("....").GetROProperty("Value")
now do that submission and the do the following
Res2= Browser("...").Page("......").Webedit("....").GetROProperty("Value")
If Res2-Res1 =1 Then
Reporter.ReportEvent 0, "Increase Check", "Value is increased as expected"
Else
Reporter.ReportEvent 1, "Increase Check", "Value is not increased"
End If