|
2#
楼主 |
发表于 2011-3-21 16:19:25
|
只看该作者
比如:action1
- RunAction "Action2", allIterations, DataTable("arg_accout", dtGlobalSheet)
- Reporter.ReportEvent micPass,"",DataTable("arg_accout", dtGlobalSheet)
复制代码
action2
- accout= DataTable("arg_accout", dtGlobalSheet)
- Reporter.ReportEvent micPass,"",accout
复制代码
action1的表格中有一列:arg_accout
3行分别是
1
2
3
=== ===
希望结果
RunAction "Action2", allIterations, DataTable("arg_accout", dtGlobalSheet)
传递3次值(分别是1,2,3到action2)
然后由action2的Reporter.ReportEvent,报告出1,2,3
最后有action1的Reporter.ReportEvent,报告出3
希望结果是
1
2
3
3
而这个现在实际结果是
1
1
2
2
3
3 |
|