51Testing软件测试论坛
标题:
QTP录制非文本框的问题
[打印本页]
作者:
moguikumogui
时间:
2009-6-4 18:45
标题:
QTP录制非文本框的问题
QTP录制非文本框的时候,如图:
[attach]52592[/attach]
由于其不是一般的文本框,我用了下面的方法:
Browser("Index Global").Page("Customer opinion's Insertion").Frame("enDescription").WebElement("WebElement").Object.innerText = "customer"
Browser("Index Global").Page("Customer opinion's Insertion").Frame("esDescription").WebElement("WebElement").Object.innerText = "customer opinion"
运行的时候可以执行,但是报告上会有警告,如图:
[attach]52593[/attach]
请问这种问题如何解决?
求教中......
[
本帖最后由 moguikumogui 于 2009-6-4 18:47 编辑
]
作者:
hsjzfling
时间:
2009-6-4 19:15
问题根源:
执行完
Browser("Index Global").Page("Customer opinion's Insertion").Frame("enDescription").WebElement("WebElement").Object.innerText = "customer"
这句之后,WebElement("WebElement")对象的属性已经被改变,innertext值从""变成了"customer",所以你再去执行
Browser("Index Global").Page("Customer opinion's Insertion").Frame("esDescription").WebElement("WebElement").Object.innerText = "customer opinion"
的时候,会报对象库中的对象属性值与实际值不匹配。
解决方法:
在执行第二句之前先执行以下语句即可
Browser("Index Global").Page("Customer opinion's Insertion").Frame("esDescription").WebElement("WebElement").SetToProperty "innertext","customer"
[
本帖最后由 hsjzfling 于 2009-6-5 10:18 编辑
]
作者:
moguikumogui
时间:
2009-6-4 19:41
标题:
回复 2# 的帖子
我试过了啊,可是还是会有这样的问题哦,确定可以吗?
这里是两个FRAME,上一个EnDescription和下一个EsDescription中的属性值有影响吗?
[
本帖最后由 moguikumogui 于 2009-6-4 19:46 编辑
]
作者:
fei.ge
时间:
2009-6-4 21:49
是不是要向webelement里写数据?
我记得以前看过“假装不在”博客里写的:
WebElement("XXXXX").Object.insertAdjacentText "beforeBegin","山寨在beforeBegin"
作者:
blizzardlyk
时间:
2009-6-4 22:08
学习
作者:
ziheng198688
时间:
2009-6-5 14:01
学习了 不过好像问题没有得到解决啊
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2