QTP录制非文本框的问题
QTP录制非文本框的时候,如图:由于其不是一般的文本框,我用了下面的方法:
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"
运行的时候可以执行,但是报告上会有警告,如图:
请问这种问题如何解决?
求教中......
[ 本帖最后由 moguikumogui 于 2009-6-4 18:47 编辑 ] 问题根源:
执行完
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 编辑 ]
回复 2# 的帖子
我试过了啊,可是还是会有这样的问题哦,确定可以吗?这里是两个FRAME,上一个EnDescription和下一个EsDescription中的属性值有影响吗?
[ 本帖最后由 moguikumogui 于 2009-6-4 19:46 编辑 ] 是不是要向webelement里写数据?
我记得以前看过“假装不在”博客里写的:
WebElement("XXXXX").Object.insertAdjacentText"beforeBegin","山寨在beforeBegin" 学习 学习了 不过好像问题没有得到解决啊
页:
[1]