51Testing软件测试论坛

标题: 关于Function的问题,提示类型不匹配 [打印本页]

作者: JF贰    时间: 2014-2-17 15:28
标题: 关于Function的问题,提示类型不匹配
Action1
Browser("micClass:=Browser").Navigate "bbs.51Testing.com"
Call NavigatePage("[QuickTest Professional]","论坛")


Function NavigatePage(linkName,keyWord)

        Set objBrowser = description.Create()
        objBrowser("micClass").value = "Browser"
       
        Set objPage = description.Create()
        objPage("micClass").value = "Page"
       
        Set objLink = description.Create()
        objLink("html tag").value = "A"
        objLink("text").value = linkName

        Dim checkTitle
    Browser(objBrowser).Page(objPage).Link(objLink).Click
        checkTitle=Browser(objBrowser).Page(objPage).GetROProperty("title")
       
        '验证title,如果checkTitle字符串含有“keyWord”,则表示成功进入某页面
        If Instr(checkTitle,keyWord)  <> 0 Then
                Reporter.ReportEvent micPass,"NavigatePage","Pass"
        Else
                Reporter.ReportEvent micFail,"NavigatePage","Fail"
        End If

        Set objBrowser = nothing
        Set objPage = nothing
        Set objLink = nothing
       
End Function

Run Error:
Cannot identify the object "[ Link ]" (of class Link). Verify that this object's properties match an object currently displayed in your application.

求高手解答,本人是初学者。
作者: JF贰    时间: 2014-2-17 16:14
怎么没人回答呢
作者: JF贰    时间: 2014-2-17 22:50
有没有人解答呢
作者: JF贰    时间: 2014-2-18 09:18
顶上~
作者: 赵佳乐SMILE    时间: 2014-2-18 13:45
转义符的问题
  1. Dim obj
  2. Set a=Description.Create
  3. a("html tag").value = "A"
  4. a("micclass").value="Link"
  5. 'a("text").value="五周年活动专区"
  6. a("text").value="\[QuickTest Professional\]"

  7. set obj = Browser("Micclass:=Browser").Page("Micclass:=Page").ChildObjects(a)
  8. x= obj.count
  9. msgbox x
  10. For i=0 to x-1
  11. print obj(i).GetROProperty("innerText") &"|"

  12. Next
复制代码



发现不带[]号的link就好使 ,带了就不行 然后查了点资料http://www.threes.cn/html/2009/09/799.html

只要把你代码改一句话就可以了
  1. Call NavigatePage("\[QuickTest Professional\]","论坛")
复制代码

作者: JF贰    时间: 2014-2-19 09:52
回复 5# 赵佳乐SMILE


    谢谢你,我已经解决了这个问题,完全没有想到这个[]符号的影响
作者: 赵佳乐SMILE    时间: 2014-2-20 09:47
回复 6# JF贰


    恩 我也是第一次 知道
作者: 赵佳乐SMILE    时间: 2014-2-20 09:47
回复 6# JF贰


    恩 我也是第一次 知道




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