meilijia 发表于 2013-2-19 14:47:41

求助:title=Browser_Page.Object.title:Msgbox tilte无法获取参数

学习QTP,用www.baidu.com,做例子,运行代码后,title=Browser_Page.Object.title:Msgbox tilte,这句弹出的box没有任何参数,而
Msgbox Browser("micClass:=Browser").Page("micClass:=Page").Object.title这句是有参数“百度一下,你就知道”
Set dpBrowser=Description.Create()
dpBrowser("micClass").Value="Browser"
Set dpPage=Description.Create()
‘dpPage("title").Value="百度一下,你就知道"
dpPage("micClass").Value="Page"
Set dpWebButton=Description.Create()
dpWebButton("name").Value="百度一下"
Set dplink=Description.Create()
dpLink("name").Value="关于百度"
dpLink("html tag").Value="A"
Set Browser_Page=Browser(dpBrowser).Page(dpPage)
title=Browser_Page.Object.title:Msgbox tilte                                          
Msgbox Browser("micClass:=Browser").Page("micClass:=Page").Object.title
With Browser_Page
        .WebButton(dpWebButton).GetROProperty("Value")
        .Link(dpLink).Click
End with

Set Browser_Page=Nothing
Set dpLink=Nothing
Set dpWebButton=Nothing
Set dpPage=Nothing
Set dpBrowser=Nothing

feiyunkai 发表于 2013-2-19 15:22:18

本帖最后由 feiyunkai 于 2013-2-19 15:24 编辑

参数错了:Msgbox tilte 应该为Msgbox title

yubing4828 发表于 2013-2-19 16:45:45

LS目光如炬,LZ问题解决了吗....

meilijia 发表于 2013-2-20 13:14:09

:loveliness:果然,谢谢,没仔细检查,:loveliness:
页: [1]
查看完整版本: 求助:title=Browser_Page.Object.title:Msgbox tilte无法获取参数