|
GUI map中已经存在了dw_3.price
Logical Name :
dw_3.price
{
class: edit,
obj_col_name: "dw_3.price"
}
脚本如下:
set_window ("入库事务 - [新增]", 10);
obj_type ("dw_3.lot","<kRight_E><kReturn>");
obj_type ("dw_3.qty","5<kReturn>");
obj_type ("dw_3.price","20<kReturn>"); #无法识别到脚本中的dw_3.price、dw_3.qty等等
obj_type ("dw_3.amt","<kReturn>");
。。。。。。
类似问题经常碰到,弹出Run Wizard后手工识别,但是临时性的,第二次运行又识别不了。我的错误在哪儿呢?
根据Run Wizard加入wait:
set_window ("入库事务 - [新增]", 10);
wait(10);
obj_type ("dw_3.lot","<kRight_E><kReturn>");
obj_type ("dw_3.qty","5<kReturn>");
obj_type ("dw_3.price","20<kReturn>"); #无法识别到脚本中的dw_3.price
obj_type ("dw_3.amt","<kReturn>");
[ 本帖最后由 queen 于 2006-9-13 12:20 编辑 ] |
|