|
初来匝到,请教一问题。
被测试WEB代码如下:
更改负责人<input type=text value="未指定的" name="view_input" size="30">
<input type=hidden name="hidden_input" value="" >
期望:
使用QTP为type=hidden 的 hidden_input属性赋值。
问题:
不能为type=hidden 的 hidden_input属性赋值。
已尝试方法:
方法1. Browser("XXX").Page("XXX").WebEdit("html tag:=INPUT","name:=hidden_input").Set "1983075"
方法1所报错误为:Cannot identify the object "[ WebEdit ]" (of class WebEdit). Verify that this object's properties match an object currently displayed in your application.
方法2. Browser("XXX").Page("XXX").Object.documentElement.all.hidden_input.value="1983075"
方法2所报错误为:对象不支持此属性或方法: 'hidden_input'
非常感谢。
多多交流。
[ 本帖最后由 fengjun 于 2009-3-31 16:44 编辑 ] |
|