51Testing软件测试论坛

标题: WebElement()能否根据传递的参数而变化 [打印本页]

作者: hryxm88    时间: 2010-3-8 14:31
标题: WebElement()能否根据传递的参数而变化
现在遇到一个问题是,WebElement()需要根据call()传来的参数进行变化;
但是这面这行代码,运行时,QTP提示不能标识WebElement对象,有哪位有其他方法可以实现WebElement()根据参数变化取值吗?
Call Addsys ("系统管理")
public Function Addsys(MyName)
Browser("测试系统").Page("test").Frame("main").WebElement("html tag:=TD", "innertext:=&MyName").FireEvent "onmouseover"
Browser("测试系统").Page("test").Frame("main").WebElement("html tag:=TD", "innertext:=&MyName").Click
Browser("测试系统").Page("test").Frame("content_frame_2").WebButton("添加").Click
Browser("测试系统").Page("test").Frame("content_frame").Image("Tplus_w").Click
End Function
作者: wugecat    时间: 2010-3-8 14:36
你这么做是可以的,至于识别不到参数可能是你描述对象的属性不能识别到对象的原因
作者: hryxm88    时间: 2010-3-8 15:44
自己顶一下
可以使用描述性编程来实现
set WebObjDesc = Description.Create()
WebObjDesc("innertext").Value =  MyName
WebObjDesc("html tag").Value = "TD"
Browser("测试系统").Page("test").Frame("main").WebElement(WebObjDesc).FireEvent "onmouseover"
Browser("测试系统").Page("test").Frame("main").WebElement(WebObjDesc).Click
作者: skyzhu    时间: 2010-3-8 17:46
前面是你拼接错了
WebElement("html tag:=TD", "innertext:=&MyName")
应该是
WebElement("html tag:=TD", "innertext:="&MyName)
作者: hryxm88    时间: 2010-3-8 21:11
非常感谢楼上的指正!
作者: yujie6832    时间: 2010-3-9 12:17
也是可以变化的,但是具体的还是要根据具体的业务情况,这里很难明确解释这个问题




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2