10-24-2011, 01:42 PM
Hi below is my code which does not work on perticuler step where it works for all previous steps, please help with some resolution.
Scenario:
in a test case i have around 23 Steps for 1st 17 step this code works fine.when it comes to 18th step results are not updating in datatable.
Code:
ex:
and it does not read remaining columns
implemented Keyword Driven Testing.
any help will be highly appreciated thanks a ton in advance.
Scenario:
in a test case i have around 23 Steps for 1st 17 step this code works fine.when it comes to 18th step results are not updating in datatable.
Code:
ex:
Code:
strt_range=168
end_range=190
For k=strt_range to end_range
datatable.GetSheet("DTS").SetCurrentRow(K)
environment("ts_result") = "Pass"
environment("ts_err") = "Pass"
If datatable.Value("TCID","DTC") = datatable.Value("TSID","DTS") Then
Keyword_Executor datatable.Value("Keyword","DTS")
datatable.Value("Result","DTS") = environment("ts_result")
'msgbox environment("ts_result")
datatable.Value("Error","DTS") = environment("ts_err")
and it does not read remaining columns
implemented Keyword Driven Testing.
any help will be highly appreciated thanks a ton in advance.