|
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后界面显示的那样的结果。
问题是如何一次性把所有的元素全部取出来? |
|