0

I have a employee list which i want to iterate on a site which fetches employee records

enter image description here

I am using workfusion to automate the manual process but in the first step the user have to select employee name from the dropdown or the user can type the name to filter.

It works if i hard code the name and use keyboard sequence(Typed text) but i have multiple names to iterate and therefore i take a list variable but it fails to select the name from the list variable.

How can I iterate multiple names from the dropdown one by one ?

4

2 回答 2

1

我正在使用 Workfusion RPA Express,它可以完美地迭代列表。使用“foreach 功能”(或任何循环)来迭代您的列表。将列表元素保存到变量中,例如 list_element。现在,使用“输入击键”功能,将选择更改为“来自变量”,然后从其描述中的下拉菜单中选择变量“list_element”。您还可以选择“输入文本”选项,文本为 ${list_element},这也很好用。

于 2018-02-21T16:52:32.000 回答
0

您的要求是将下拉值与值列表进行比较并选择所有适用的值或只选择一个特定名称。在后一种情况下,因为您知道需要选择什么确切值不需要迭代

于 2018-02-02T03:30:02.913 回答