标题: RunAction 的用法. [打印本页] 作者: henhenchen 时间: 2007-4-4 21:13 标题: RunAction 的用法. 今天看HELP 的 RunAction 用法. 里面说 "Before you can use the RunAction statement in the Expert View for an external action, you must first call or copy the external action into your test by choosing Insert > Copy of Action or Call to Action" 有点不明白. 既然已"call or copy the external action into your test" 那在什么地方.时候才用
RunAction ActionName, [Iteration , Parameters] ? 因CALLED ACTION 已在你的TEST中了呀.大家可不可以说说看. 谢谢作者: mstiunicon 时间: 2007-4-4 21:29
在ActionA中调用ActionB
call 是获得ActionB的引用,只是引用,如果原本的ActionB的内容发生了变化,那么ActionA中的内容也跟着变化,且不能在ActionA中对ActionB修改。
copy 是把ActionB的脚本复制到ActionA中,得到ActionB的一个copy,修改ActionB_copy不对ActionB造成影响,修改ActionB也不对ActionB_copy造成影响。
有点像C语言中的传指针和传值的意思。