将html表头设置为rpa集合头

时间:2018-03-12 16:05:12

标签: blueprism rpa

我设法得到html表并将其更改为集合。但是我希望表头成为集合头。有可能吗?谢谢。

下面是关于我如何获取表元素并将其更改为集合的更多详细信息。

我从应用程序建模器中的html表中获取的路径:

/ HTML / BODY(1)/ DIV(2)/ FORM(2)/ DIV(1)/ TABLE(1)

然后我使用Read阶段并选择表作为元素并将Data设置为Get Table功能并保存集合。

收集结果产生:

On header - Column1(text),Column2(text)....

第一行 - 部门,名称.... ||这应该是标题

第二行 - DepartmentData,NameData ....

1 个答案:

答案 0 :(得分:2)

好吧,我得到了一个名为"从第一行设置列名的行动"在Utility - Collection Manipulation中。你也有吗?

如果没有,那么这里是代码:

Dim iThisColumn as integer = -1
For Each Column As DataColumn In Input_Collection.Columns
   iThisColumn +=1
   Column.ColumnName=CStr(Input_Collection.Rows.Item(0).Item(iThisColumn))
Next
Output_Collection = Input_Collection

enter image description here