TA的每日心情 | 开心 2015-10-19 13:26 |
---|
签到天数: 2 天 连续签到: 2 天 [LV.1]测试小兵
|
一些函数中参数带下划线的格式如何理解或对应,
如:
脚本:
# Using win_check_gui() to verify that buttons are in correct state
rc = win_check_gui ("Open Order", "buttons.ckl", "Ord_ON", 2);
if (rc != E_OK)
tl_step (order_num_checked, FAIL, btn_enabled_instead_of_disabled);
else
tl_step (order_num_checked, PASS, btn_CNFDOC_proper_state);
测试结果中显示:
Step:Order No. Checked,Statusass,Description:Customer Name,Flight Date,OK,and Cancel were in the proper state.
其中的
order_num_checked与Order No. Checked;
btn_CNFDOC_proper_state与Customer Name,Flight Date,OK,and Cancel were in the proper state
是按什么规则对应的,有winrunner自带的这方面帮助吗? |
|