谢谢你的回复. 有什么方法可以识别系统里的Filter/Sort Fields(Columns) 并且把这些值存储到本地的datasheet 里?
Column 1 Column 2 Column3 …
Value 1 … … …
Value 2 … … …
Value 3 … … …
Value 4 … … …
我尝试了下面的办法但不行
Dim oDesc
Set MyDescription = Description.Create()
MyDescription("micclass").Value = "WebElement"
For i=0 to checkboxes.count-1
Dim RO
RO=Browser("Name:=").Page("title:=").Childobjects(MyDescription).GetROProperty("innertext")
msgbox RO
'
colcount=newsheet.UsedRange.Columns.Count 'Add to Header
For i = 1 To colcount
param=newsheet.Cells(1,i)
DataTable.GetSheet("Action1").AddParameter param,""
next