我是UIpath
的新手,需要一些帮助。
我想从软件的列表中选择一个特定的对象(AA
)
列表:
AAT
AA
顺序有时会有所不同。我们正在使用click text
工具选择AA
对象,但是RPA
选择AAT
是因为AA
字母首先出现在列表中。
有什么提示吗?谢谢。
答案 0 :(得分:1)
您可以尝试 SELECT UNIQUE C.color
FROM colors C INNER JOIN markers M ON M.color = C.color
WHERE M.color NOT LIKE 'g%'
AND M.hue NOT LIKE 'b%'
ORDER BY C.color ASC; /*this returns 2744 rows in my db*/
union
SELECT UNIQUE C.color
FROM colors C INNER JOIN pencils P ON P.color = C.color
WHERE P.color NOT LIKE 'g%'
AND P.hue NOT LIKE 'b%'
ORDER BY C.color ASC; /*this returns 4192 rows in my db*/
来代替Click
。在属性窗格中,相应地更改选择器;这是一个从“添加/远程程序”窗口中选择IIS Express的示例。