51Testing软件测试论坛

标题: 一次性数组中所有的元素全部取出来 [打印本页]

作者: nanice    时间: 2008-9-16 15:00
标题: 一次性数组中所有的元素全部取出来
Set  element=Description.Create()                                   '输出排序后的最终字段名
          element("micclass").Value="WebElement"
          element("html tag").Value="SPAN"
          element("class").Value=""
Set newelement=Browser("***").Window("***").Page("***").ChildObjects(element)

elenumbers=newelement.Count

For i=0 to elenumbers-1
       ReDim Preserve  jyzdarray(i)
       jyzdarray(i)=newelement(i).GetROProperty("innertext")         
Next

请问如何将jyzdarray(i)数组中的所有元素一次全部写入日志文件中去?关键是不能要有for循环之类的。不然打出的日志太过复杂。
我需要的最终结果就是像 m=newelement(i).GetROProperty("innertext")         
                                        print m后界面显示的那样的结果。
问题是如何一次性把所有的元素全部取出来?
作者: nanice    时间: 2008-9-16 15:15
For i=0 to elenumbers-1
        ReDim Preserve  jyzdarray(i)
        jyzdarray(i)=newelement(i).GetROProperty("innertext")
        stringname=stringname+jyzdarray(i)+";"
Next
print stringname

哎,大道至简啊。
作者: lingxin5013    时间: 2008-9-17 09:04
LS 你说不使用FOR循环 你还不是用了 .
作者: nanice    时间: 2008-9-17 12:40
关键是最后一句:print stringname
就把所有内容一次打印出来了啊。呵呵。这样就实现了我的需求了哦。




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