一次性数组中所有的元素全部取出来
Setelement=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 Preservejyzdarray(i)
jyzdarray(i)=newelement(i).GetROProperty("innertext")
Next
请问如何将jyzdarray(i)数组中的所有元素一次全部写入日志文件中去?关键是不能要有for循环之类的。不然打出的日志太过复杂。
我需要的最终结果就是像 m=newelement(i).GetROProperty("innertext")
print m后界面显示的那样的结果。
问题是如何一次性把所有的元素全部取出来? For i=0 to elenumbers-1
ReDim Preservejyzdarray(i)
jyzdarray(i)=newelement(i).GetROProperty("innertext")
stringname=stringname+jyzdarray(i)+";"
Next
print stringname
哎,大道至简啊。 LS 你说不使用FOR循环 你还不是用了 . 关键是最后一句:print stringname
就把所有内容一次打印出来了啊。呵呵。这样就实现了我的需求了哦。
页:
[1]