qtp action调用获取不了参数值,单独运行是可以的
我的“查找货源”需要调用“添加司机” 调用Action call to existing action,添加司机室一个re-usable action为什么单独运行都是成功的,调用之后之后取不到添加司机的参数值?跑到添加司机就出错误了,错误如下:The retrieve DataTable.Value operation failed. The <name> column does not exist.
Line (7): "Browser("中国智能配货网").Page("司机管理").WebEdit("司机姓名").Set DataTable("name", dtGlobalSheet)".
Tip: To better understand the cause of failed steps, you can record movie clips of run sessions and view them together with the step result details. 错误提示以及很明确的告诉了你错误在哪里。。。
The retrieve DataTable.Value operation failed. The <name> column does not exist.
你当前的脚本的globalsheet中根本就没有"name"这一列参数
在调用action的时候只会载入该action的local sheet,在你的例子中就是"添加司机"这个sheet。
一般来说,建Reusable Action的时候,参数会放在当前action对应的dtsheet中,这样才会在被调用的时候可以使用被调用action已有的参数列表。
页:
[1]